1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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>dmp-comp</artifactId>
- <groupId>com.persagy</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-digital-starter</artifactId>
- <version>1.0.0</version>
- <!--<repositories>
- <repository>
- <!– nexus服务器中用户名:在settings.xml中<server>的id–>
- <id>persagy</id>
- <name>persagy</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- </repository>
- </repositories>-->
- <dependencies>
- <!-- fm 工具包 -->
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>dmp-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-annotation</artifactId>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-extension</artifactId>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <!--<distributionManagement>
- <repository>
- <!– nexus服务器中用户名:在settings.xml中<server>的id–>
- <id>persagy</id>
- <name>persagy</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- <uniqueVersion>true</uniqueVersion>
- </repository>
- </distributionManagement>-->
- </project>
|