杭州市委办项管
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 2 Jahren
vor 2 Jahren
vor 2 Jahren
vor 9 Monaten
vor 2 Jahren
vor 9 Monaten
vor 2 Jahren
vor 2 Jahren
vor 9 Monaten
vor 2 Jahren
vor 9 Monaten
vor 2 Jahren
vor 9 Monaten
vor 2 Jahren
vor 2 Jahren
vor 2 Jahren
vor 1 Jahr
vor 1 Jahr
vor 2 Jahren
vor 2 Jahren
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. <parent>
  6. <groupId>com.hz.pm</groupId>
  7. <artifactId>hz-project-management</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>hz-pm-api</artifactId>
  11. <version>1.0.0</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.google.guava</groupId>
  15. <artifactId>guava</artifactId>
  16. <version>33.0.0-jre</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.hutool</groupId>
  20. <artifactId>hutool-all</artifactId>
  21. <version>5.8.25</version>
  22. </dependency>
  23. <!--lombok-->
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. </dependency>
  28. <!-- mybatis plus-->
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. </dependency>
  33. <!--Spring boot Redis-->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-extension</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.session</groupId>
  44. <artifactId>spring-session-data-redis</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-freemarker</artifactId>
  49. </dependency>
  50. <!--spring boot 集成redis所需common-pool2-->
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-pool2</artifactId>
  54. <version>${commons-pool2.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.commons</groupId>
  58. <artifactId>commons-lang3</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.tomcat.embed</groupId>
  66. <artifactId>tomcat-embed-core</artifactId>
  67. <version>9.0.87</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-validation</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-web</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-jdbc</artifactId>
  80. </dependency>
  81. <!--实现springboot的热加载-->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-devtools</artifactId>
  85. <scope>runtime</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-aop</artifactId>
  90. </dependency>
  91. <!--cache-->
  92. <dependency>
  93. <groupId>com.github.ben-manes.caffeine</groupId>
  94. <artifactId>caffeine</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.httpcomponents</groupId>
  98. <artifactId>httpclient</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>junit</groupId>
  102. <artifactId>junit</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.aspectj</groupId>
  107. <artifactId>aspectjweaver</artifactId>
  108. </dependency>
  109. <!--Spring boot 测试-->
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-test</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework</groupId>
  117. <artifactId>spring-test</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-configuration-processor</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.ningdatech</groupId>
  125. <artifactId>nd-log-starter</artifactId>
  126. <version>1.0.0</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.ningdatech</groupId>
  130. <artifactId>nd-basic</artifactId>
  131. <exclusions>
  132. <exclusion>
  133. <groupId>org.slf4j</groupId>
  134. <artifactId>slf4j-log4j12</artifactId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.ningdatech</groupId>
  140. <artifactId>nd-swagger2-starter</artifactId>
  141. <exclusions>
  142. <exclusion>
  143. <groupId>org.slf4j</groupId>
  144. <artifactId>slf4j-log4j12</artifactId>
  145. </exclusion>
  146. </exclusions>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.dm</groupId>
  150. <artifactId>Dm8JdbcDriver</artifactId>
  151. <version>1.8</version>
  152. <scope>system</scope>
  153. <systemPath>${project.basedir}/lib/DmJdbcDriver18.jar</systemPath>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.ningdatech</groupId>
  157. <artifactId>nd-cache-starter</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.ningdatech</groupId>
  161. <artifactId>nd-yxt-starter</artifactId>
  162. <version>1.0.0</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.alibaba</groupId>
  166. <artifactId>easyexcel-core</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.ningdatech</groupId>
  170. <artifactId>nd-file-starter</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.ningdatech</groupId>
  174. <artifactId>nd-flowable-starter</artifactId>
  175. <exclusions>
  176. <exclusion>
  177. <groupId>com.baomidou</groupId>
  178. <artifactId>mybatis-plus-boot-starter</artifactId>
  179. </exclusion>
  180. <exclusion>
  181. <groupId>com.alibaba</groupId>
  182. <artifactId>druid-spring-boot-starter</artifactId>
  183. </exclusion>
  184. </exclusions>
  185. </dependency>
  186. <dependency>
  187. <groupId>joda-time</groupId>
  188. <artifactId>joda-time</artifactId>
  189. </dependency>
  190. <!--状态机-->
  191. <dependency>
  192. <groupId>org.springframework.statemachine</groupId>
  193. <artifactId>spring-statemachine-core</artifactId>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.github.oshi</groupId>
  197. <artifactId>oshi-core</artifactId>
  198. </dependency>
  199. </dependencies>
  200. <!-- 打包 -->
  201. <!--配置环境的profile-->
  202. <profiles>
  203. <profile>
  204. <id>dev</id>
  205. <properties>
  206. <!--使用${environment}获取值-->
  207. <environment>dev</environment>
  208. </properties>
  209. </profile>
  210. <profile>
  211. <id>test</id>
  212. <properties>
  213. <!--使用${environment}获取值-->
  214. <environment>test</environment>
  215. </properties>
  216. </profile>
  217. <profile>
  218. <id>prod</id>
  219. <properties>
  220. <environment>prod</environment>
  221. </properties>
  222. </profile>
  223. </profiles>
  224. <build>
  225. <resources>
  226. <resource>
  227. <directory>src/main/resources</directory>
  228. <includes>
  229. <include>**/*</include>
  230. </includes>
  231. </resource>
  232. <resource>
  233. <directory>src/main/java</directory>
  234. <includes>
  235. <include>**/*.xml</include>
  236. </includes>
  237. </resource>
  238. <resource>
  239. <directory>src/main/lib</directory>
  240. <targetPath>BOOT-INF/lib/</targetPath>
  241. <includes>
  242. <include>**/*.jar</include>
  243. </includes>
  244. </resource>
  245. <resource>
  246. <directory>src/main/resources</directory>
  247. <targetPath>BOOT-INF/classes/</targetPath>
  248. </resource>
  249. </resources>
  250. <finalName>${project.artifactId}</finalName>
  251. <plugins>
  252. <plugin>
  253. <groupId>org.springframework.boot</groupId>
  254. <artifactId>spring-boot-maven-plugin</artifactId>
  255. <version>2.6.8</version>
  256. <configuration>
  257. <includeSystemScope>true</includeSystemScope>
  258. </configuration>
  259. <executions>
  260. <execution>
  261. <goals>
  262. <goal>repackage</goal>
  263. </goals>
  264. </execution>
  265. </executions>
  266. </plugin>
  267. <!-- 跳过单元测试 -->
  268. <plugin>
  269. <groupId>org.apache.maven.plugins</groupId>
  270. <artifactId>maven-surefire-plugin</artifactId>
  271. <configuration>
  272. <skipTests>true</skipTests>
  273. </configuration>
  274. </plugin>
  275. </plugins>
  276. </build>
  277. </project>