pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>spring-cloud-dependencies-parent</artifactId>
  8. <groupId>org.springframework.cloud</groupId>
  9. <version>2.1.5.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>sc-common-bom</artifactId>
  13. <packaging>pom</packaging>
  14. <version>${sc.version}</version>
  15. <description>sc 公共版本控制</description>
  16. <properties>
  17. <sc.version>1.0-SNAPSHOT</sc.version>
  18. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  19. <druid.version>1.1.18</druid.version>
  20. <mysql.connector.version>8.0.16</mysql.connector.version>
  21. <swagger.core.version>1.5.22</swagger.core.version>
  22. <mp.weixin.version>3.3.0</mp.weixin.version>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.nantian.cloud</groupId>
  28. <artifactId>sc-common-core</artifactId>
  29. <version>${sc.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.nantian.cloud</groupId>
  33. <artifactId>sc-common-data</artifactId>
  34. <version>${sc.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.nantian.cloud</groupId>
  38. <artifactId>sc-common-gateway</artifactId>
  39. <version>${sc.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.nantian.cloud</groupId>
  43. <artifactId>sc-common-datasource</artifactId>
  44. <version>${sc.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.nantian.cloud</groupId>
  48. <artifactId>sc-common-job</artifactId>
  49. <version>${sc.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.nantian.cloud</groupId>
  53. <artifactId>sc-common-log</artifactId>
  54. <version>${sc.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.nantian.cloud</groupId>
  58. <artifactId>sc-common-minio</artifactId>
  59. <version>${sc.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.nantian.cloud</groupId>
  63. <artifactId>sc-common-security</artifactId>
  64. <version>${sc.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.nantian.cloud</groupId>
  68. <artifactId>sc-common-sequence</artifactId>
  69. <version>${sc.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.nantian.cloud</groupId>
  73. <artifactId>sc-common-swagger</artifactId>
  74. <version>${sc.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.nantian.cloud</groupId>
  78. <artifactId>sc-common-transaction</artifactId>
  79. <version>${sc.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.nantian.cloud</groupId>
  83. <artifactId>sc-upms-api</artifactId>
  84. <version>${sc.version}</version>
  85. </dependency>
  86. <!--mybatis plus extension,包含了mybatis plus core-->
  87. <dependency>
  88. <groupId>com.baomidou</groupId>
  89. <artifactId>mybatis-plus-extension</artifactId>
  90. <version>${mybatis-plus.version}</version>
  91. </dependency>
  92. <!--mybatis-->
  93. <dependency>
  94. <groupId>com.baomidou</groupId>
  95. <artifactId>mybatis-plus-boot-starter</artifactId>
  96. <version>${mybatis-plus.version}</version>
  97. </dependency>
  98. <!-- druid 连接池 -->
  99. <dependency>
  100. <groupId>com.alibaba</groupId>
  101. <artifactId>druid-spring-boot-starter</artifactId>
  102. <version>${druid.version}</version>
  103. </dependency>
  104. <!--mysql 驱动-->
  105. <dependency>
  106. <groupId>mysql</groupId>
  107. <artifactId>mysql-connector-java</artifactId>
  108. <version>${mysql.connector.version}</version>
  109. </dependency>
  110. <!--swagger 最新依赖内置版本-->
  111. <dependency>
  112. <groupId>io.swagger</groupId>
  113. <artifactId>swagger-models</artifactId>
  114. <version>${swagger.core.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.swagger</groupId>
  118. <artifactId>swagger-annotations</artifactId>
  119. <version>${swagger.core.version}</version>
  120. </dependency>
  121. <!--微信依赖-->
  122. <dependency>
  123. <groupId>com.github.binarywang</groupId>
  124. <artifactId>weixin-java-mp</artifactId>
  125. <version>${mp.weixin.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.github.binarywang</groupId>
  129. <artifactId>weixin-java-common</artifactId>
  130. <version>${mp.weixin.version}</version>
  131. </dependency>
  132. </dependencies>
  133. </dependencyManagement>
  134. </project>