pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>v2.0.0-SNAPSHOT</version>
  16. <modules>
  17. <module>AlarmDataStarter</module>
  18. <module>AlarmEngineStarter</module>
  19. </modules>
  20. <properties>
  21. <maven.compiler.source>8</maven.compiler.source>
  22. <maven.compiler.target>8</maven.compiler.target>
  23. </properties>
  24. <repositories>
  25. <repository>
  26. <id>snapshot</id>
  27. <name>snapshot Repository</name>
  28. <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
  29. <snapshots>
  30. <enabled>true</enabled>
  31. <updatePolicy>always</updatePolicy>
  32. </snapshots>
  33. </repository>
  34. <repository>
  35. <id>persagy</id>
  36. <name>persagy Repository</name>
  37. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  38. </repository>
  39. <repository>
  40. <id>integrated</id>
  41. <name>releases Repository</name>
  42. <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
  43. </repository>
  44. </repositories>
  45. <!-- 发布maven私服 -->
  46. <distributionManagement>
  47. <snapshotRepository>
  48. <id>Snapshots</id>
  49. <name>energy-alarm-starter</name>
  50. <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
  51. </snapshotRepository>
  52. <repository>
  53. <id>Releases</id>
  54. <name>energy-alarm-starter</name>
  55. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy</url>
  56. </repository>
  57. </distributionManagement>
  58. </project>