Commit 4c7d608f8718442d85cf0838a8936dbfcec8e172
1 parent
c0fff315
标记此处做测试
Showing
1 changed file
with
13 additions
and
3 deletions
pom.xml
| ... | ... | @@ -141,11 +141,21 @@ |
| 141 | 141 | |
| 142 | 142 | <build> |
| 143 | 143 | <plugins> |
| 144 | + <!--<plugin>--> | |
| 145 | + <!--<groupId>org.springframework.boot</groupId>--> | |
| 146 | + <!--<artifactId>spring-boot-maven-plugin</artifactId>--> | |
| 147 | + <!--</plugin>--> | |
| 148 | + <!--新依赖--> | |
| 144 | 149 | <plugin> |
| 145 | - <groupId>org.springframework.boot</groupId> | |
| 146 | - <artifactId>spring-boot-maven-plugin</artifactId> | |
| 150 | + <groupId>org.apache.maven.plugins</groupId> | |
| 151 | + <artifactId>maven-compiler-plugin</artifactId> | |
| 152 | + <version>3.1</version> | |
| 153 | + <configuration> | |
| 154 | + <verbose>true</verbose> | |
| 155 | + <fork>true</fork> | |
| 156 | + <executable>${JAVA_HOME}/bin/javac</executable> | |
| 157 | + </configuration> | |
| 147 | 158 | </plugin> |
| 148 | - | |
| 149 | 159 | <!-- mybatis generator 自动生成代码插件 --> |
| 150 | 160 | <plugin> |
| 151 | 161 | <groupId>org.mybatis.generator</groupId> | ... | ... |