pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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>EnergyAlarmStarter</artifactId>
  14. <packaging>pom</packaging>
  15. <version>v1.0.0</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. <repository>
  28. <id>Releases</id>
  29. <name>dmp-alarm-starter</name>
  30. <url>http://47.93.132.139:8081/nexus/content/repositories/releases</url>
  31. </repository>
  32. </distributionManagement>
  33. </project>