1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.4.0</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.persagy.apm</groupId>
- <artifactId>energy-alarm-starter</artifactId>
- <packaging>pom</packaging>
- <version>v2.0.0-SNAPSHOT</version>
- <modules>
- <module>AlarmDataStarter</module>
- <module>AlarmEngineStarter</module>
- </modules>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <repositories>
- <repository>
- <id>snapshot</id>
- <name>snapshot Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>always</updatePolicy>
- </snapshots>
- </repository>
- <repository>
- <id>persagy</id>
- <name>persagy Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- </repository>
- <repository>
- <id>integrated</id>
- <name>releases Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
- </repository>
- </repositories>
- <!-- 发布maven私服 -->
- <distributionManagement>
- <snapshotRepository>
- <id>Snapshots</id>
- <name>energy-alarm-starter</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/snapshots/</url>
- </snapshotRepository>
- <repository>
- <id>Releases</id>
- <name>energy-alarm-starter</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy</url>
- </repository>
- </distributionManagement>
- </project>
|