12345678910111213141516171819202122232425262728293031323334353637 |
- <?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">
- <parent>
- <artifactId>apm-parent</artifactId>
- <groupId>com.persagy</groupId>
- <version>3.0.0</version>
- <relativePath>../apm-parent</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>apm-server</artifactId>
- <version>3.0.0</version>
- <distributionManagement>
- <repository>
- <id>persagy</id>
- <name>releases Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- </repository>
- </distributionManagement>
- <dependencies>
- <!-- 集成框架工具类 -->
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>integrated-common-core</artifactId>
- </dependency>
- <!-- web -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- </project>
|