123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?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.iotechn</groupId>
- <artifactId>unimall</artifactId>
- <version>0.0.1-RELEASE</version>
- </parent>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-admin-api</artifactId>
- <version>0.0.1-RELEASE</version>
- <name>unimall-admin-api</name>
- <description>后台管理Api</description>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <repositories>
- <repository>
- <id>maven-ali</id>
- <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>always</updatePolicy>
- <checksumPolicy>fail</checksumPolicy>
- </snapshots>
- </repository>
- <repository>
- <id>iotechn-release</id>
- <name>unimall maven</name>
- <url>http://maven.iotechn.com/repository/maven-releases/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <!-- 引入本地jar -->
- <dependency>
- <groupId>com.dangdang.openplatform.openapi</groupId>
- <artifactId>sdk</artifactId>
- <version>1.0-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/lib/dangdang-open-sdk.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-core</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <!-- 插件核心依赖 勿删 -->
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-plugin-core</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-data</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.iotechn</groupId>
- <artifactId>unimall-biz</artifactId>
- <version>0.0.1-RELEASE</version>
- </dependency>
- <!-- 微信第三方封装Api -->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-pay</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|