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>v1.0.0-SNAPSHOT</version>
  9. <relativePath>../apm-parent</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>apm-package</artifactId>
  13. <packaging>pom</packaging>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.source.skip>true</maven.source.skip>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. </properties>
  19. <!-- 插件配置 -->
  20. <build>
  21. <plugins>
  22. <!-- 打包源码 -->
  23. <!--<plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-source-plugin</artifactId>
  26. </plugin>-->
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. <configuration>
  31. <mainClass>com.persagy.ServerApplication</mainClass>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>