123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?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">
- <parent>
- <artifactId>kxmall</artifactId>
- <groupId>com.kxmall</groupId>
- <version>3.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <artifactId>kxmall-app-api</artifactId>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <description>
- 小程序接口api
- </description>
- <dependencies>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.kxmall</groupId>
- <artifactId>kxmall-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>com.kxmall</groupId>
- <artifactId>kxmall-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.kxmall</groupId>
- <artifactId>kxmall-system</artifactId>
- </dependency>
- <!--经纬度计算-->
- <dependency>
- <groupId>org.locationtech.jts</groupId>
- <artifactId>jts-core</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>
- <dependency>
- <groupId>com.squareup.okhttp</groupId>
- <artifactId>okhttp</artifactId>
- <version>2.7.5</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|