pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.4.0</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.persagy.apm</groupId>
  13. <artifactId>energy-alarm-starter</artifactId>
  14. <packaging>pom</packaging>
  15. <version>v1.0.0-SNAPSHOT</version>
  16. <modules>
  17. <module>AlarmDataStarter</module>
  18. <module>AlarmEngineStarter</module>
  19. <module>CollectDataStarter</module>
  20. </modules>
  21. <properties>
  22. <maven.compiler.source>8</maven.compiler.source>
  23. <maven.compiler.target>8</maven.compiler.target>
  24. </properties>
  25. <!-- 发布maven私服 -->
  26. <distributionManagement>
  27. <snapshotRepository>
  28. <id>Snapshots</id>
  29. <name>energy-alarm-starter</name>
  30. <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
  31. </snapshotRepository>
  32. <repository>
  33. <id>Releases</id>
  34. <name>energy-alarm-starter</name>
  35. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy</url>
  36. </repository>
  37. </distributionManagement>
  38. </project>