12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>dmp-package</artifactId>
- <groupId>com.persagy</groupId>
- <version>1.0.0</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>com.persagy</groupId>
- <artifactId>persagy-dmp-middleware</artifactId>
- <version>1.0.0</version>
- <name>persagy-dmp-middleware</name>
- <description>dmp中间件</description>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <repositories>
- <repository>
- <id>Persagy</id>
- <name>persagy</name>
- <url>http://47.93.132.139:8081/nexus/content/groups/public/</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- <repository>
- <id>persagy</id>
- <name>releases Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- <layout>default</layout>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
- <dependencies>
- <!-- 配置中心(包含注册中心) -->
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>integrated-config-client</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-digital-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-server</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|