pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. <packaging>pom</packaging>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.5.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.iotechn</groupId>
  13. <artifactId>unimall</artifactId>
  14. <version>0.0.1-RELEASE</version>
  15. <name>unimall</name>
  16. <description>App,MiniProgram</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <id>maven-ali</id>
  23. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  24. <releases>
  25. <enabled>true</enabled>
  26. </releases>
  27. <snapshots>
  28. <enabled>true</enabled>
  29. <updatePolicy>always</updatePolicy>
  30. <checksumPolicy>fail</checksumPolicy>
  31. </snapshots>
  32. </repository>
  33. </repositories>
  34. <modules>
  35. <module>unimall-core</module>
  36. <module>unimall-data</module>
  37. <module>unimall-biz</module>
  38. <module>unimall-app-api</module>
  39. <module>unimall-admin-api</module>
  40. <module>unimall-launcher</module>
  41. <module>unimall-plugin-core</module>
  42. </modules>
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- http客户端 -->
  46. <dependency>
  47. <groupId>com.squareup.okhttp3</groupId>
  48. <artifactId>okhttp</artifactId>
  49. <version>3.10.0</version>
  50. </dependency>
  51. <!-- 良心云 sms -->
  52. <dependency>
  53. <groupId>com.github.qcloudsms</groupId>
  54. <artifactId>qcloudsms</artifactId>
  55. <version>1.0.5</version>
  56. </dependency>
  57. <!-- 阿里云 SMS -->
  58. <dependency>
  59. <groupId>com.aliyun</groupId>
  60. <artifactId>aliyun-java-sdk-core</artifactId>
  61. <version>4.1.1</version>
  62. </dependency>
  63. <!-- 阿里云对象存储 -->
  64. <dependency>
  65. <groupId>com.aliyun.oss</groupId>
  66. <artifactId>aliyun-sdk-oss</artifactId>
  67. <version>2.8.3</version>
  68. </dependency>
  69. <!-- mybatis plus 依赖 -->
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-boot-starter</artifactId>
  73. <version>2.2.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-support</artifactId>
  78. <version>2.2.0</version>
  79. </dependency>
  80. <!-- mysql -->
  81. <dependency>
  82. <groupId>mysql</groupId>
  83. <artifactId>mysql-connector-java</artifactId>
  84. <version>8.0.15</version>
  85. </dependency>
  86. <!-- 阿里巴巴 数据源 Druid -->
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>druid</artifactId>
  90. <version>1.1.8</version>
  91. </dependency>
  92. <!-- lombok 工具 -->
  93. <dependency>
  94. <groupId>org.projectlombok</groupId>
  95. <artifactId>lombok</artifactId>
  96. <version>1.18.4</version>
  97. <scope>provided</scope>
  98. </dependency>
  99. <!-- 阿里巴巴 json 解析 -->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>1.2.31</version>
  104. </dependency>
  105. <!-- 微信第三方封装Api -->
  106. <dependency>
  107. <groupId>com.github.binarywang</groupId>
  108. <artifactId>weixin-java-pay</artifactId>
  109. <version>3.3.0</version>
  110. <exclusions>
  111. <exclusion>
  112. <artifactId>qrcode-utils</artifactId>
  113. <groupId>com.github.binarywang</groupId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. </dependencies>
  118. </dependencyManagement>
  119. <!-- 发布maven私服 -->
  120. <!--<distributionManagement>-->
  121. <!--<repository>-->
  122. <!--<id>iotechn-release</id>-->
  123. <!--<name>unimall maven</name>-->
  124. <!--<url>http://maven.iotechn.com/repository/maven-releases/</url>-->
  125. <!--</repository>-->
  126. <!--</distributionManagement>-->
  127. </project>