mark
This commit is contained in:
parent
3d5e5e5845
commit
e149150b1d
@ -86,4 +86,61 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<finalName>${project.artifactId}</finalName>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<version>2.5.12</version>
|
||||||
|
<configuration>
|
||||||
|
<!--指定运行main函数的包-->
|
||||||
|
<mainClass>com.cnbm.YmApplication</mainClass>
|
||||||
|
<!--开启分层编译支持-->
|
||||||
|
<layers>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
<configuration>${project.basedir}/src/main/resources/layers.xml</configuration>
|
||||||
|
</layers>
|
||||||
|
<excludes>
|
||||||
|
<exclude>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
</exclude>
|
||||||
|
</excludes>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>repackage</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<skipTests>true</skipTests>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.spotify</groupId>
|
||||||
|
<artifactId>docker-maven-plugin</artifactId>
|
||||||
|
<version>${docker.plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<imageName>ym-pass/${project.artifactId}</imageName>
|
||||||
|
<dockerDirectory>${project.basedir}/</dockerDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<targetPath>/</targetPath>
|
||||||
|
<directory>${project.build.directory}</directory>
|
||||||
|
<include>${project.build.finalName}.jar</include>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
</project>
|
</project>
|
27
ym-gateway/src/main/resources/layers.xml
Normal file
27
ym-gateway/src/main/resources/layers.xml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<layers xmlns="http://www.springframework.org/schema/boot/layers"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://www.springframework.org/schema/boot/layers
|
||||||
|
https://www.springframework.org/schema/boot/layers/layers.xsd">
|
||||||
|
<application>
|
||||||
|
<into layer="spring-boot-loader">
|
||||||
|
<include>org/springframework/boot/loader/**</include>
|
||||||
|
</into>
|
||||||
|
<into layer="application" />
|
||||||
|
</application>
|
||||||
|
<dependencies>
|
||||||
|
<into layer="snapshot-dependencies">
|
||||||
|
<include>*:*:*SNAPSHOT</include>
|
||||||
|
</into>
|
||||||
|
<into layer="company-dependencies">
|
||||||
|
<include>com.cnbm:*</include>
|
||||||
|
</into>
|
||||||
|
<into layer="dependencies"/>
|
||||||
|
</dependencies>
|
||||||
|
<layerOrder>
|
||||||
|
<layer>dependencies</layer>
|
||||||
|
<layer>spring-boot-loader</layer>
|
||||||
|
<layer>snapshot-dependencies</layer>
|
||||||
|
<layer>company-dependencies</layer>
|
||||||
|
<layer>application</layer>
|
||||||
|
</layerOrder>
|
||||||
|
</layers>
|
Loading…
Reference in New Issue
Block a user