当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
209 Star 795 Fork 390

cjbi / weshop
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 7.45 KB
一键复制 编辑 原始数据 按行查看 历史
cjbi 提交于 2019-09-25 10:44 . 接口依赖修改
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<name>weshop</name>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Greenwich.SR3</spring-cloud.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.test.skip>true</maven.test.skip>
</properties>
<modules>
<module>weshop-admin</module>
<module>weshop-admin-ui</module>
<module>weshop-wechat</module>
<module>weshop-wechat-ui</module>
<module>weshop-example</module>
<module>weshop-eureka-server</module>
<module>weshop-config-server</module>
<module>weshop-api-gateway</module>
<module>weshop-common</module>
<module>weshop-order-api</module>
<module>weshop-order</module>
<module>weshop-user-api</module>
<module>weshop-user</module>
<module>weshop-goods-api</module>
<module>weshop-goods</module>
<module>weshop-storage</module>
<module>weshop-storage-api</module>
<module>weshop-pay</module>
<module>weshop-pay-api</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-pay-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-order-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-user-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-goods-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-storage-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>tech.wetech.weshop</groupId>
<artifactId>weshop-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
<!--mapper-->
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper-spring-boot-starter</artifactId>
<version>2.1.5</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>com.qcloud</groupId>
<artifactId>cos_api</artifactId>
<version>5.4.4</version>
</dependency>
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
<version>[7.2.0, 7.2.99]</version>
</dependency>
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>wx-java</artifactId>
<version>3.4.0</version>
</dependency>
<!--wx_pay-->
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-pay</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-miniapp</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>aliyun</id>
<name>aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>aliyun</id>
<name>aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
<profiles>
<profile>
<id>env-prd</id>
<properties>
<env>prd</env>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>env-dev</id>
<properties>
<env>dev</env>
</properties>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<outputDirectory>${project.parent.basedir}/target</outputDirectory>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
Java
1
https://gitee.com/cjbi/weshop.git
git@gitee.com:cjbi/weshop.git
cjbi
weshop
weshop
master

搜索帮助