pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <repositories>
  26. <repository>
  27. <id>snapshot</id>
  28. <name>snapshot Repository</name>
  29. <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
  30. <snapshots>
  31. <enabled>true</enabled>
  32. <updatePolicy>always</updatePolicy>
  33. </snapshots>
  34. </repository>
  35. <repository>
  36. <id>persagy</id>
  37. <name>persagy Repository</name>
  38. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  39. </repository>
  40. <repository>
  41. <id>integrated</id>
  42. <name>releases Repository</name>
  43. <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
  44. </repository>
  45. </repositories>
  46. <!-- 发布maven私服 -->
  47. <distributionManagement>
  48. <snapshotRepository>
  49. <id>Snapshots</id>
  50. <name>energy-alarm-starter</name>
  51. <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
  52. </snapshotRepository>
  53. <repository>
  54. <id>Releases</id>
  55. <name>energy-alarm-starter</name>
  56. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy</url>
  57. </repository>
  58. </distributionManagement>
  59. </project>