修改打包方式
parent
9b5d247fa2
commit
95894b186b
34
pom.xml
34
pom.xml
|
|
@ -16,6 +16,7 @@
|
||||||
麻城小玉潭水库系统
|
麻城小玉潭水库系统
|
||||||
</description>
|
</description>
|
||||||
<properties>
|
<properties>
|
||||||
|
<java.version>21</java.version>
|
||||||
<maven.compiler.source>21</maven.compiler.source>
|
<maven.compiler.source>21</maven.compiler.source>
|
||||||
<maven.compiler.target>21</maven.compiler.target>
|
<maven.compiler.target>21</maven.compiler.target>
|
||||||
<maven.test.skip>true</maven.test.skip>
|
<maven.test.skip>true</maven.test.skip>
|
||||||
|
|
@ -136,21 +137,24 @@
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>maven-dependency-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<!-- <executions>-->
|
<executions>
|
||||||
<!-- <execution>-->
|
<execution>
|
||||||
<!-- <id>copy-lib</id>-->
|
<goals>
|
||||||
<!-- <goals>-->
|
<goal>repackage</goal>
|
||||||
<!-- <goal>copy-dependencies</goal>-->
|
</goals>
|
||||||
<!-- </goals>-->
|
</execution>
|
||||||
<!-- <configuration>-->
|
</executions>
|
||||||
<!-- <excludeTransitive>false</excludeTransitive>-->
|
<configuration>
|
||||||
<!-- <stripVersion>false</stripVersion>-->
|
<mainClass>com.gunshi.project.xyt.Main</mainClass>
|
||||||
<!-- <includeScope>runtime</includeScope>-->
|
<excludes>
|
||||||
<!-- </configuration>-->
|
<exclude>
|
||||||
<!-- </execution>-->
|
<groupId>org.projectlombok</groupId>
|
||||||
<!-- </executions>-->
|
<artifactId>lombok</artifactId>
|
||||||
|
</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue