pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.iotechn</groupId>
  7. <artifactId>unimall</artifactId>
  8. <version>0.0.1-RELEASE</version>
  9. </parent>
  10. <groupId>com.iotechn</groupId>
  11. <artifactId>unimall-app-api</artifactId>
  12. <version>0.0.1-RELEASE</version>
  13. <name>unimall-app-api</name>
  14. <description>小程序,App Api</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>maven-ali</id>
  21. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  22. <releases>
  23. <enabled>true</enabled>
  24. </releases>
  25. <snapshots>
  26. <enabled>true</enabled>
  27. <updatePolicy>always</updatePolicy>
  28. <checksumPolicy>fail</checksumPolicy>
  29. </snapshots>
  30. </repository>
  31. <repository>
  32. <id>iotechn-release</id>
  33. <name>unimall maven</name>
  34. <url>http://maven.iotechn.com/repository/maven-releases/</url>
  35. </repository>
  36. </repositories>
  37. <dependencies>
  38. <!-- 引入本地jar -->
  39. <dependency>
  40. <groupId>com.dangdang.openplatform.openapi</groupId>
  41. <artifactId>sdk</artifactId>
  42. <version>1.0-SNAPSHOT</version>
  43. <scope>system</scope>
  44. <systemPath>${project.basedir}/src/main/lib/dangdang-open-sdk.jar</systemPath>
  45. </dependency>
  46. <!-- http客户端 -->
  47. <dependency>
  48. <groupId>com.squareup.okhttp3</groupId>
  49. <artifactId>okhttp</artifactId>
  50. </dependency>
  51. <!-- 插件核心依赖 勿删 -->
  52. <dependency>
  53. <groupId>com.iotechn</groupId>
  54. <artifactId>unimall-plugin-core</artifactId>
  55. <version>0.0.1-RELEASE</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.iotechn</groupId>
  59. <artifactId>unimall-core</artifactId>
  60. <version>0.0.1-RELEASE</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.iotechn</groupId>
  64. <artifactId>unimall-data</artifactId>
  65. <version>0.0.1-RELEASE</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.iotechn</groupId>
  69. <artifactId>unimall-biz</artifactId>
  70. <version>0.0.1-RELEASE</version>
  71. </dependency>
  72. <!-- 微信第三方封装Api -->
  73. <dependency>
  74. <groupId>com.github.binarywang</groupId>
  75. <artifactId>weixin-java-pay</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <optional>true</optional>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-test</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. </dependencies>
  92. </project>