12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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>
- <!-- 引入本地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>
|