| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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>4.2.0</version>
- <properties>
- <docker-registry>registry.cn-beijing.aliyuncs.com/lili-images</docker-registry>
- <images-version>0.0.1</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>
|