1 Star 0 Fork 389

torn/weshop

forked from cjbi/weshop
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 6.84 KB
一键复制 编辑 原始数据 按行查看 历史
<?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">
<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.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Greenwich.SR1</spring-cloud.version>
</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>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.netflix.hystrix</groupId>
<artifactId>hystrix-metrics-event-stream</artifactId>
<version>1.5.18</version>
<scope>compile</scope>
</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>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>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
<profiles>
<profile>
<id>env-dev</id>
<properties>
<env>dev</env>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/torns/weshop.git
git@gitee.com:torns/weshop.git
torns
weshop
weshop
master

搜索帮助