79 lines
2.2 KiB
XML
79 lines
2.2 KiB
XML
<?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">
|
||
<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>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>cn.chinaunicom.sdsi</groupId>
|
||
<artifactId>unifast-security</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<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>
|
||
</project>
|