Commit 31ac887f authored by 张永's avatar 张永

1

parent 2805f5d8
...@@ -240,17 +240,26 @@ ...@@ -240,17 +240,26 @@
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>spring-boot-maven-plugin</artifactId> <configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.mybatis.generator</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<version>${mybatis.generator.version}</version>
<configuration> <configuration>
<verbose>true</verbose> <mainClass>${start-class}</mainClass>
<overwrite>true</overwrite> <layout>ZIP</layout>
</configuration> </configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>com.spotify</groupId> <groupId>com.spotify</groupId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment