12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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>
- <groupId>com.jiayue.focus</groupId>
- <artifactId>ipfcst-common-bom</artifactId>
- <packaging>pom</packaging>
- <version>3.0</version>
- <description>ipfcst 公共版本控制</description>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.jiayue.focus</groupId>
- <artifactId>ipfcst-common-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jiayue.focus</groupId>
- <artifactId>ipfcst-common-data</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.jiayue.focus</groupId>
- <artifactId>ipfcst-common-security</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <!--上传配置 必须 -->
- <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>
|