杭州市委办项管
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

224 řádky
8.4KB

  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. <!-- mybatis plus -->
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-boot-starter</artifactId>
  73. <version>${mybatis.plus.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.guava</groupId>
  77. <artifactId>guava</artifactId>
  78. <version>${guava.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.ningdatech</groupId>
  82. <artifactId>nd-basic</artifactId>
  83. <version>1.0.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.ningdatech</groupId>
  87. <artifactId>nd-swagger2-starter</artifactId>
  88. <version>1.0.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.ningdatech</groupId>
  92. <artifactId>nd-flowable-starter</artifactId>
  93. <version>1.0.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.flowable</groupId>
  97. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  98. <version>6.7.2</version>
  99. </dependency>
  100. <!--KingBase-->
  101. <dependency>
  102. <groupId>com.kingbase8</groupId>
  103. <artifactId>kingbase8-8.2.0</artifactId>
  104. <version>1.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.kingbase.dialect</groupId>
  108. <artifactId>kingbase8-8.2.0</artifactId>
  109. <version>1.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.alibaba</groupId>
  113. <artifactId>easyexcel-core</artifactId>
  114. <version>3.1.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.ningdatech</groupId>
  118. <artifactId>nd-file-starter</artifactId>
  119. <version>1.0.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.ningdatech</groupId>
  123. <artifactId>nd-zwdd-starter</artifactId>
  124. <version>1.0.0</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.ningdatech</groupId>
  128. <artifactId>nd-cache-starter</artifactId>
  129. <version>1.0.0</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.ningdatech</groupId>
  133. <artifactId>nd-log-starter</artifactId>
  134. <version>1.0.0</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>joda-time</groupId>
  138. <artifactId>joda-time</artifactId>
  139. <version>2.10.6</version>
  140. </dependency>
  141. <!--状态机-->
  142. <dependency>
  143. <groupId>org.springframework.statemachine</groupId>
  144. <artifactId>spring-statemachine-core</artifactId>
  145. <version>2.0.1.RELEASE</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.itextpdf</groupId>
  149. <artifactId>itextpdf</artifactId>
  150. <version>5.5.9</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.itextpdf</groupId>
  154. <artifactId>itext-asian</artifactId>
  155. <version>5.2.0</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.itextpdf.tool</groupId>
  159. <artifactId>xmlworker</artifactId>
  160. <version>5.5.9</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.xhtmlrenderer</groupId>
  164. <artifactId>flying-saucer-pdf-itext5</artifactId>
  165. <version>9.0.3</version>
  166. </dependency>
  167. <!--将html转换成pdf-->
  168. <dependency>
  169. <groupId>com.itextpdf</groupId>
  170. <artifactId>html2pdf</artifactId>
  171. <version>2.0.2</version>
  172. </dependency>
  173. <!--导入导出-->
  174. <dependency>
  175. <groupId>cn.afterturn</groupId>
  176. <artifactId>easypoi-base</artifactId>
  177. <version>4.2.0</version>
  178. </dependency>
  179. </dependencies>
  180. </dependencyManagement>
  181. <repositories>
  182. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  183. <repository>
  184. <id>aliyun</id>
  185. <name>aliyun</name>
  186. <url>https://maven.aliyun.com/repository/public</url>
  187. <releases>
  188. <enabled>true</enabled>
  189. </releases>
  190. <snapshots>
  191. <enabled>false</enabled>
  192. </snapshots>
  193. </repository>
  194. </repositories>
  195. <pluginRepositories>
  196. <!--阿里云代理Spring 插件仓库-->
  197. <pluginRepository>
  198. <id>spring-plugin</id>
  199. <name>spring-plugin</name>
  200. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  201. <releases>
  202. <enabled>true</enabled>
  203. </releases>
  204. <snapshots>
  205. <enabled>false</enabled>
  206. </snapshots>
  207. </pluginRepository>
  208. </pluginRepositories>
  209. <modules>
  210. <module>pmapi</module>
  211. <module>ningda-generator</module>
  212. </modules>
  213. </project>