pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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-biz</artifactId>
  12. <version>0.0.1-RELEASE</version>
  13. <name>unimall-biz</name>
  14. <description>unimall 非公开BizService</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.iotechn</groupId>
  21. <artifactId>unimall-data</artifactId>
  22. <version>0.0.1-RELEASE</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.iotechn</groupId>
  26. <artifactId>unimall-core</artifactId>
  27. <version>0.0.1-RELEASE</version>
  28. </dependency>
  29. <!-- http客户端 -->
  30. <dependency>
  31. <groupId>com.squareup.okhttp3</groupId>
  32. <artifactId>okhttp</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.squareup.okhttp3</groupId>
  45. <artifactId>okhttp</artifactId>
  46. </dependency>
  47. <!-- 微信第三方封装Api -->
  48. <dependency>
  49. <groupId>com.github.binarywang</groupId>
  50. <artifactId>weixin-java-pay</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.getui.push</groupId>
  54. <artifactId>restful-sdk</artifactId>
  55. <version>1.0.0.1</version>
  56. </dependency>
  57. </dependencies>
  58. <repositories>
  59. <repository>
  60. <id>getui-nexus</id>
  61. <url>http://mvn.gt.getui.com/nexus/content/repositories/releases/</url>
  62. </repository>
  63. </repositories>
  64. </project>