pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>dmp-parent</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>1.1.0</version>
  9. <relativePath>../dmp-parent</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>dmp-package</artifactId>
  13. <packaging>pom</packaging>
  14. <distributionManagement>
  15. <!--<repository>
  16. <id>persagy</id>
  17. <name>releases Repository</name>
  18. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  19. </repository>-->
  20. <repository>
  21. <id>persagy2021-yushu-public</id>
  22. <name>public</name>
  23. <url>https://persagy2021-maven.pkg.coding.net/repository/yushu/public/</url>
  24. </repository>
  25. </distributionManagement>
  26. <!-- 插件配置 -->
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-source-plugin</artifactId>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. <configuration>
  37. <mainClass>com.persagy.ServerApplication</mainClass>
  38. </configuration>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>