杭州市委办项管
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

pom.xml 8.0KB

1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. <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. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi</artifactId>
  30. <version>5.2.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.poi</groupId>
  34. <artifactId>poi-ooxml</artifactId>
  35. <version>5.2.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>fastjson</artifactId>
  40. <version>${fastjson.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-dependencies</artifactId>
  45. <version>${spring-boot.version}</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!-- mybatis plus -->
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-boot-starter</artifactId>
  53. <version>${mybatis.plus.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.guava</groupId>
  57. <artifactId>guava</artifactId>
  58. <version>${guava.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.ningdatech</groupId>
  62. <artifactId>nd-basic</artifactId>
  63. <version>1.0.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-extension</artifactId>
  68. <version>${mybatis.plus.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.ningdatech</groupId>
  72. <artifactId>nd-swagger2-starter</artifactId>
  73. <version>1.0.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.ningdatech</groupId>
  77. <artifactId>nd-flowable-starter</artifactId>
  78. <version>1.0.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.flowable</groupId>
  82. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  83. <version>6.7.2</version>
  84. </dependency>
  85. <!--KingBase-->
  86. <dependency>
  87. <groupId>com.kingbase8</groupId>
  88. <artifactId>kingbase8-8.2.0</artifactId>
  89. <version>1.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.kingbase.dialect</groupId>
  93. <artifactId>kingbase8-8.2.0</artifactId>
  94. <version>1.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.alibaba</groupId>
  98. <artifactId>easyexcel-core</artifactId>
  99. <version>3.1.2</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.ningdatech</groupId>
  103. <artifactId>nd-file-starter</artifactId>
  104. <version>1.0.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.ningdatech</groupId>
  108. <artifactId>nd-zwdd-starter</artifactId>
  109. <version>1.0.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.ningdatech</groupId>
  113. <artifactId>nd-cache-starter</artifactId>
  114. <version>1.0.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.ningdatech</groupId>
  118. <artifactId>nd-log-starter</artifactId>
  119. <version>1.0.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.ningdatech</groupId>
  123. <artifactId>nd-irs-starter</artifactId>
  124. <version>1.0.0</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>joda-time</groupId>
  128. <artifactId>joda-time</artifactId>
  129. <version>2.10.6</version>
  130. </dependency>
  131. <!--状态机-->
  132. <dependency>
  133. <groupId>org.springframework.statemachine</groupId>
  134. <artifactId>spring-statemachine-core</artifactId>
  135. <version>2.0.1.RELEASE</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.itextpdf</groupId>
  139. <artifactId>itextpdf</artifactId>
  140. <version>5.5.9</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.itextpdf</groupId>
  144. <artifactId>itext-asian</artifactId>
  145. <version>5.2.0</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.itextpdf.tool</groupId>
  149. <artifactId>xmlworker</artifactId>
  150. <version>5.5.9</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.xhtmlrenderer</groupId>
  154. <artifactId>flying-saucer-pdf-itext5</artifactId>
  155. <version>9.0.3</version>
  156. </dependency>
  157. <!--将html转换成pdf-->
  158. <dependency>
  159. <groupId>com.itextpdf</groupId>
  160. <artifactId>html2pdf</artifactId>
  161. <version>2.0.2</version>
  162. </dependency>
  163. <!--导入导出-->
  164. <dependency>
  165. <groupId>cn.afterturn</groupId>
  166. <artifactId>easypoi-base</artifactId>
  167. <version>4.2.0</version>
  168. </dependency>
  169. </dependencies>
  170. </dependencyManagement>
  171. <repositories>
  172. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  173. <repository>
  174. <id>aliyun</id>
  175. <name>aliyun</name>
  176. <url>https://maven.aliyun.com/repository/public</url>
  177. <releases>
  178. <enabled>true</enabled>
  179. </releases>
  180. <snapshots>
  181. <enabled>false</enabled>
  182. </snapshots>
  183. </repository>
  184. </repositories>
  185. <pluginRepositories>
  186. <!--阿里云代理Spring 插件仓库-->
  187. <pluginRepository>
  188. <id>spring-plugin</id>
  189. <name>spring-plugin</name>
  190. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  191. <releases>
  192. <enabled>true</enabled>
  193. </releases>
  194. <snapshots>
  195. <enabled>false</enabled>
  196. </snapshots>
  197. </pluginRepository>
  198. </pluginRepositories>
  199. <modules>
  200. <module>pmapi</module>
  201. <module>ningda-generator</module>
  202. <module>syn-data-task</module>
  203. </modules>
  204. </project>