83 lines
2.9 KiB
XML
83 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.3.4.RELEASE</version>
|
|
</parent>
|
|
|
|
<groupId>cn.lili</groupId>
|
|
<artifactId>lili-shop-parent</artifactId>
|
|
<version>1.0.1</version>
|
|
|
|
<properties>
|
|
<docker-registry>registry.cn-beijing.aliyuncs.com/lili-images</docker-registry>
|
|
<images-version>0.0.5</images-version>
|
|
</properties>
|
|
<modules>
|
|
<module>framework</module>
|
|
<module>buyer-api</module>
|
|
<module>manager-api</module>
|
|
<module>seller-api</module>
|
|
<module>common-api</module>
|
|
<module>consumer</module>
|
|
<module>admin</module>
|
|
</modules>
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!--版本号统一修改-->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<configuration>
|
|
<generateBackupPoms>false</generateBackupPoms>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<version>1.2.2</version>
|
|
<configuration>
|
|
<imageName>${docker-registry}/${project.build.finalName}:${images-version}</imageName>
|
|
<baseImage>java</baseImage>
|
|
<entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint>
|
|
<pushImage>true</pushImage>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>/</targetPath>
|
|
<directory>${project.build.directory}</directory>
|
|
<include>${project.build.finalName}.jar</include>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>aliyun maven</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
<layout>default</layout>
|
|
<!-- 是否开启发布版构件下载 -->
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<!-- 是否开启快照版构件下载 -->
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
</project> |