123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?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>ipfcst</artifactId>
- <groupId>com.jiayue.ipfcst</groupId>
- <version>3.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>ipfcst-integration</artifactId>
- <version>1.0.0</version>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.jiayue.ipfcst</groupId>
- <artifactId>ipfcst</artifactId>
- <version>3.0.0</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.3.5</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.jiayue.ipfcst</groupId>
- <artifactId>ipfcst-common-data</artifactId>
- <version>3.0.0</version>
- </dependency>
- <!-- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-cache</artifactId>
- </dependency>-->
- </dependencies>
- <!--上传配置 必须 -->
- <distributionManagement>
- <repository>
- <id>jiayue-releases</id>
- <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-releases</url>
- </repository>
- <snapshotRepository>
- <id>jiayue-snapshots</id>
- <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-snapshots</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|