12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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">
- <parent>
- <artifactId>dmp-parent</artifactId>
- <groupId>com.persagy</groupId>
- <version>1.1.0</version>
- <relativePath>../dmp-parent</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>dmp-package</artifactId>
- <packaging>pom</packaging>
- <distributionManagement>
- <!--<repository>
- <id>persagy</id>
- <name>releases Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- </repository>-->
- <repository>
- <id>persagy2021-yushu-public</id>
- <name>public</name>
- <url>https://persagy2021-maven.pkg.coding.net/repository/yushu/public/</url>
- </repository>
- </distributionManagement>
- <!-- 插件配置 -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <mainClass>com.persagy.ServerApplication</mainClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|