杭州市委办项管
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

200 lines
7.6KB

  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ningdatech</groupId>
  6. <artifactId>project-management</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0</version>
  9. <name>project-management</name>
  10. <description>丽水项管二期项目</description>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <spring-boot.version>2.6.11</spring-boot.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <jwt.version>3.7.0</jwt.version>
  17. <com.alibaba.druid.version>1.2.8</com.alibaba.druid.version>
  18. <mybatis.plus.version>3.5.1</mybatis.plus.version>
  19. <io.springfox-swagger2.version>3.0.0</io.springfox-swagger2.version>
  20. <swagger-knife.version>3.0.3</swagger-knife.version>
  21. <fastjson.version>1.2.83</fastjson.version>
  22. <guava.version>31.1-jre</guava.version>
  23. <commons-pool2.version>2.11.1</commons-pool2.version>
  24. <useragent.yauaa>6.11</useragent.yauaa>
  25. <druid.version>1.2.8</druid.version>
  26. <mica.ip2region>2.6.3</mica.ip2region>
  27. </properties>
  28. <dependencyManagement>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi</artifactId>
  33. <version>5.2.2</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>druid-spring-boot-starter</artifactId>
  38. <version>${druid.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.poi</groupId>
  42. <artifactId>poi-ooxml</artifactId>
  43. <version>5.2.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>${fastjson.version}</version>
  49. </dependency>
  50. <!-- 解析客户端操作系统、浏览器信息 -->
  51. <dependency>
  52. <groupId>nl.basjes.parse.useragent</groupId>
  53. <artifactId>yauaa</artifactId>
  54. <version>${useragent.yauaa}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-dependencies</artifactId>
  59. <version>${spring-boot.version}</version>
  60. <type>pom</type>
  61. <scope>import</scope>
  62. </dependency>
  63. <!--druid数据库连接池-->
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid</artifactId>
  67. <version>${com.alibaba.druid.version}</version>
  68. </dependency>
  69. <!-- jwt -->
  70. <dependency>
  71. <groupId>com.auth0</groupId>
  72. <artifactId>java-jwt</artifactId>
  73. <version>${jwt.version}</version>
  74. </dependency>
  75. <!-- mybatis plus -->
  76. <dependency>
  77. <groupId>com.baomidou</groupId>
  78. <artifactId>mybatis-plus-boot-starter</artifactId>
  79. <version>${mybatis.plus.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.google.guava</groupId>
  83. <artifactId>guava</artifactId>
  84. <version>${guava.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.ningdatech</groupId>
  88. <artifactId>nd-dict-starter</artifactId>
  89. <version>1.0.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.ningdatech</groupId>
  93. <artifactId>nd-basic</artifactId>
  94. <version>1.0.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.ningdatech</groupId>
  98. <artifactId>nd-swagger2-starter</artifactId>
  99. <version>1.0.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.ningdatech</groupId>
  103. <artifactId>nd-flowable-starter</artifactId>
  104. <version>1.0.1</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.flowable</groupId>
  108. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  109. <version>6.7.2</version>
  110. </dependency>
  111. <!--KingBase-->
  112. <dependency>
  113. <groupId>com.kingbase8</groupId>
  114. <artifactId>kingbase8-8.2.0</artifactId>
  115. <version>1.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.kingbase.dialect</groupId>
  119. <artifactId>kingbase8-8.2.0</artifactId>
  120. <version>1.0</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>easyexcel-core</artifactId>
  125. <version>3.1.2</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.ningdatech</groupId>
  129. <artifactId>nd-file-starter</artifactId>
  130. <version>1.0.0</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.ningdatech</groupId>
  134. <artifactId>nd-zwdd-starter</artifactId>
  135. <version>1.0.0</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.ningdatech</groupId>
  139. <artifactId>nd-cache-starter</artifactId>
  140. <version>1.0.0</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.ningdatech</groupId>
  144. <artifactId>nd-log-starter</artifactId>
  145. <version>1.0.0</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>joda-time</groupId>
  149. <artifactId>joda-time</artifactId>
  150. <version>2.10.6</version>
  151. </dependency>
  152. <!--状态机-->
  153. <dependency>
  154. <groupId>org.springframework.statemachine</groupId>
  155. <artifactId>spring-statemachine-core</artifactId>
  156. <version>2.0.1.RELEASE</version>
  157. </dependency>
  158. </dependencies>
  159. </dependencyManagement>
  160. <repositories>
  161. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  162. <repository>
  163. <id>aliyun</id>
  164. <name>aliyun</name>
  165. <url>https://maven.aliyun.com/repository/public</url>
  166. <releases>
  167. <enabled>true</enabled>
  168. </releases>
  169. <snapshots>
  170. <enabled>false</enabled>
  171. </snapshots>
  172. </repository>
  173. </repositories>
  174. <pluginRepositories>
  175. <!--阿里云代理Spring 插件仓库-->
  176. <pluginRepository>
  177. <id>spring-plugin</id>
  178. <name>spring-plugin</name>
  179. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  180. <releases>
  181. <enabled>true</enabled>
  182. </releases>
  183. <snapshots>
  184. <enabled>false</enabled>
  185. </snapshots>
  186. </pluginRepository>
  187. </pluginRepositories>
  188. <modules>
  189. <module>pmapi</module>
  190. <module>ningda-generator</module>
  191. </modules>
  192. </project>