主项目:
<packaging>pom</packaging>
打包配置:
<!--指定使用maven打包-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skipTests>true</skipTests> <!--默认关掉单元测试 -->
</configuration>
</plugin>
</plugins>
</build>
子项目,boot入口模块:
<packaging>jar</packaging>
<parent>
<groupId>com.kuma.platform</groupId>
<artifactId>kuma-boot</artifactId>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 指定该Main Class为全局的唯一入口 -->
<mainClass>com.kuma.platform.MainApplication</mainClass>
<layout>ZIP</layout>
<!--fork:如果没有该项配置,整个devtools不会起作用-->
<fork>true</fork>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
其他子模块:
<packaging>jar</packaging>
<parent>
//....
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
标签:springboot,jar,boot,maven,pom,kuma,org,83
From: https://blog.51cto.com/u_14816966/5760153