杭州市委办项管
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 8.6KB

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