pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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-admin-api</artifactId>
  12. <version>0.0.1-RELEASE</version>
  13. <name>unimall-admin-api</name>
  14. <description>后台管理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. <dependency>
  39. <groupId>commons-httpclient</groupId>
  40. <artifactId>commons-httpclient</artifactId>
  41. <version>3.1</version>
  42. </dependency>
  43. <!-- 引入本地jar -->
  44. <dependency>
  45. <groupId>com.dangdang.openplatform.openapi</groupId>
  46. <artifactId>sdk</artifactId>
  47. <version>1.0-SNAPSHOT</version>
  48. <scope>system</scope>
  49. <systemPath>${project.basedir}/src/main/lib/dangdang-open-sdk.jar</systemPath>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.iotechn</groupId>
  53. <artifactId>unimall-core</artifactId>
  54. <version>0.0.1-RELEASE</version>
  55. </dependency>
  56. <!-- 插件核心依赖 勿删 -->
  57. <dependency>
  58. <groupId>com.iotechn</groupId>
  59. <artifactId>unimall-plugin-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>com.baidu.contact-center</groupId>
  83. <artifactId>cf-auth-api-token</artifactId>
  84. <version>5.1.5-SNAPSHOT</version>
  85. <scope>system</scope>
  86. <systemPath>${project.basedir}/src/main/lib/cf-auth-api-token-5.1.5-SNAPSHOT-jar-with-dependencies.jar</systemPath>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.projectlombok</groupId>
  90. <artifactId>lombok</artifactId>
  91. <optional>true</optional>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. </dependencies>
  99. </project>