maven plugin update
This commit is contained in:
@@ -88,23 +88,13 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- <plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
</plugin> -->
|
|
||||||
|
|
||||||
<!-- 打包插件, war包名称不带版本号 -->
|
<!-- war插件,war包名称不带版本号 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-war-plugin</artifactId>
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- <packagingExcludes></packagingExcludes>
|
|
||||||
<warSourceExcludes></warSourceExcludes> -->
|
|
||||||
<webappDirectory>\${project.build.directory}/\${project.artifactId}</webappDirectory>
|
|
||||||
<warName>\${finalName}</warName>
|
<warName>\${finalName}</warName>
|
||||||
<archive>
|
|
||||||
<addMavenDescriptor>false</addMavenDescriptor>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
|||||||
@@ -87,56 +87,16 @@
|
|||||||
|
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
||||||
<!-- Compiler 插件, 设定JDK版本 -->
|
<!-- compiler插件 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<showWarnings>true</showWarnings>
|
|
||||||
<!-- <compilerArguments> -->
|
|
||||||
<!-- <verbose /> 输出有关编译器正在执行的操作的消息 -->
|
|
||||||
<!-- <bootclasspath>${JAVA_HOME}\jre\lib\rt.jar;${JAVA_HOME}\jre\lib\jce.jar</bootclasspath> -->
|
|
||||||
<!-- </compilerArguments> -->
|
|
||||||
<excludes>
|
|
||||||
<exclude>target/generated-sources/**</exclude>
|
|
||||||
</excludes>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<!-- 打包jar文件时,配置manifest文件,加入lib包的jar依赖 -->
|
<!-- jar插件 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<!-- <encoding>${project.build.sourceEncoding}</encoding> -->
|
|
||||||
<archive>
|
|
||||||
<addMavenDescriptor>false</addMavenDescriptor>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<!-- <phase>prepare-package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>jar</goal>
|
|
||||||
</goals> -->
|
|
||||||
<configuration>
|
|
||||||
<!-- <classesDirectory>${project.outputDirectory}</classesDirectory>
|
|
||||||
<finalName>${finalName}</finalName>
|
|
||||||
<outputDirectory>${project.build.directory}/${project.artifactId}/WEB-INF/lib</outputDirectory>
|
|
||||||
<includes>
|
|
||||||
<include>com/thinkgem/jeesite/**</include>
|
|
||||||
</includes> -->
|
|
||||||
<archive>
|
|
||||||
<manifest>
|
|
||||||
<!-- Add directory entries -->
|
|
||||||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
||||||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
||||||
<addClasspath>true</addClasspath>
|
|
||||||
</manifest>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<!-- resource插件 -->
|
<!-- resource插件 -->
|
||||||
@@ -163,7 +123,48 @@
|
|||||||
|
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
||||||
<!-- 打包插件, war包名称不带版本号 -->
|
<!-- compiler插件,设定JDK版本 -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<showWarnings>true</showWarnings>
|
||||||
|
<!-- <compilerArguments>
|
||||||
|
<verbose /> 输出有关编译器正在执行的操作的消息
|
||||||
|
<bootclasspath>${JAVA_HOME}\jre\lib\rt.jar;${JAVA_HOME}\jre\lib\jce.jar</bootclasspath>
|
||||||
|
</compilerArguments> -->
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- jar插件,配置manifest文件,加入lib包的jar依赖 -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<addMavenDescriptor>false</addMavenDescriptor>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<configuration>
|
||||||
|
<excludes>
|
||||||
|
<exclude>userfiles/**</exclude>
|
||||||
|
</excludes>
|
||||||
|
<finalName>${project.artifactId}</finalName>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||||
|
<addClasspath>true</addClasspath>
|
||||||
|
</manifest>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- war插件,war包名称不带版本号 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-war-plugin</artifactId>
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
@@ -216,9 +217,9 @@
|
|||||||
<goals>
|
<goals>
|
||||||
<goal>jar</goal>
|
<goal>jar</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<!-- <configuration>
|
||||||
<!-- <additionalparam>-Xdoclint:none</additionalparam>-->
|
<additionalparam>-Xdoclint:none</additionalparam>
|
||||||
</configuration>
|
</configuration> -->
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
@@ -280,11 +281,11 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
<!-- Docker 插件 -->
|
<!-- Docker 插件 https://github.com/fabric8io/docker-maven-plugin -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>io.fabric8</groupId>
|
<groupId>io.fabric8</groupId>
|
||||||
<artifactId>docker-maven-plugin</artifactId>
|
<artifactId>docker-maven-plugin</artifactId>
|
||||||
<version>0.33.0</version>
|
<version>0.39.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<dockerHost>${docker.dockerHost}</dockerHost>
|
<dockerHost>${docker.dockerHost}</dockerHost>
|
||||||
<verbose>true</verbose>
|
<verbose>true</verbose>
|
||||||
|
|||||||
12
web/pom.xml
12
web/pom.xml
@@ -90,23 +90,13 @@
|
|||||||
<includeSystemScope>true</includeSystemScope>
|
<includeSystemScope>true</includeSystemScope>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- <plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
</plugin> -->
|
|
||||||
|
|
||||||
<!-- 打包插件, war包名称不带版本号 -->
|
<!-- war插件,war包名称不带版本号 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-war-plugin</artifactId>
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- <packagingExcludes></packagingExcludes>
|
|
||||||
<warSourceExcludes></warSourceExcludes> -->
|
|
||||||
<webappDirectory>${project.build.directory}/${project.artifactId}</webappDirectory>
|
|
||||||
<warName>${finalName}</warName>
|
<warName>${finalName}</warName>
|
||||||
<archive>
|
|
||||||
<addMavenDescriptor>false</addMavenDescriptor>
|
|
||||||
</archive>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user