pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>apm-parent</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>3.0.0</version>
  9. <relativePath>../apm-parent</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>apm-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. </distributionManagement>
  21. <!-- 插件配置 -->
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-source-plugin</artifactId>
  27. </plugin>
  28. <plugin>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-maven-plugin</artifactId>
  31. <configuration>
  32. <mainClass>com.persagy.ServerApplication</mainClass>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>