2020-10-19 15:37:51 +08:00
|
|
|
|
<?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">
|
2020-10-19 14:33:57 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
|
|
|
<artifactId>mall-ebtp-cloud</artifactId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
|
|
|
<artifactId>mall-ebtp-cloud-core</artifactId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
<name>mall-ebtp-cloud-core</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<sdsi-mall-core-version>0.0.1</sdsi-mall-core-version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.chinaunicom.sdsi</groupId>
|
|
|
|
|
<artifactId>mall-core</artifactId>
|
|
|
|
|
<version>${sdsi-mall-core-version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2020-10-19 15:37:51 +08:00
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<!-- 配置nexus远程仓库 -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>repo_group_seal</id>
|
|
|
|
|
<name>Nexus Snapshot Repository</name>
|
|
|
|
|
<url>http://192.168.30.126:31233/repository/eshop-grouppath-45c07c6e-maven-group/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>aliyun-repos</id>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<!-- 配置从哪个仓库中下载构件,即jar包 -->
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>repo_group_seal</id>
|
|
|
|
|
<name>Nexus Snapshot Repository</name>
|
|
|
|
|
<url>http://192.168.30.126:31233/repository/eshop-grouppath-45c07c6e-maven-group/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
2020-10-19 14:33:57 +08:00
|
|
|
|
</project>
|