pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>kxmall</artifactId>
  7. <groupId>com.kxmall</groupId>
  8. <version>3.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>kxmall-app-api</artifactId>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <description>
  17. 小程序接口api
  18. </description>
  19. <dependencies>
  20. <!-- 核心模块-->
  21. <dependency>
  22. <groupId>com.kxmall</groupId>
  23. <artifactId>kxmall-framework</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.kxmall</groupId>
  27. <artifactId>kxmall-common</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.kxmall</groupId>
  31. <artifactId>kxmall-system</artifactId>
  32. </dependency>
  33. <!--经纬度计算-->
  34. <dependency>
  35. <groupId>org.locationtech.jts</groupId>
  36. <artifactId>jts-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.squareup.okhttp</groupId>
  50. <artifactId>okhttp</artifactId>
  51. <version>2.7.5</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>