杭州市委办项管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 16KB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  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. <properties>
  13. <jjwt.version>0.11.5</jjwt.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.google.guava</groupId>
  18. <artifactId>guava</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cn.hutool</groupId>
  22. <artifactId>hutool-all</artifactId>
  23. <version>5.8.5</version>
  24. </dependency>
  25. <!--lombok-->
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. </dependency>
  30. <!-- mybatis plus-->
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. </dependency>
  35. <!--Spring boot Redis-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-extension</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.session</groupId>
  46. <artifactId>spring-session-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-freemarker</artifactId>
  51. </dependency>
  52. <!--spring boot 集成redis所需common-pool2-->
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. <version>${commons-pool2.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.tomcat.embed</groupId>
  68. <artifactId>tomcat-embed-core</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-validation</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-jdbc</artifactId>
  81. </dependency>
  82. <!--实现springboot的热加载-->
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-devtools</artifactId>
  86. <optional>true</optional>
  87. <scope>true</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-aop</artifactId>
  92. </dependency>
  93. <!--cache-->
  94. <dependency>
  95. <groupId>com.github.ben-manes.caffeine</groupId>
  96. <artifactId>caffeine</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.httpcomponents</groupId>
  100. <artifactId>httpclient</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.poi</groupId>
  104. <artifactId>poi</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi-ooxml</artifactId>
  109. </dependency>
  110. <!-- 阿里云oss -->
  111. <dependency>
  112. <groupId>com.aliyun.oss</groupId>
  113. <artifactId>aliyun-sdk-oss</artifactId>
  114. <version>3.15.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>junit</groupId>
  118. <artifactId>junit</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.aspectj</groupId>
  123. <artifactId>aspectjweaver</artifactId>
  124. </dependency>
  125. <!--Spring boot 测试-->
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-test</artifactId>
  129. </dependency>
  130. <!--引入jwt-->
  131. <dependency>
  132. <groupId>com.auth0</groupId>
  133. <artifactId>java-jwt</artifactId>
  134. <version>3.10.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-configuration-processor</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.ningdatech</groupId>
  142. <artifactId>nd-log-starter</artifactId>
  143. <version>1.0.0</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>com.ningdatech</groupId>
  147. <artifactId>nd-basic</artifactId>
  148. <exclusions>
  149. <exclusion>
  150. <groupId>org.slf4j</groupId>
  151. <artifactId>slf4j-log4j12</artifactId>
  152. </exclusion>
  153. </exclusions>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.ningdatech</groupId>
  157. <artifactId>nd-swagger2-starter</artifactId>
  158. <exclusions>
  159. <exclusion>
  160. <groupId>org.slf4j</groupId>
  161. <artifactId>slf4j-log4j12</artifactId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.ningdatech</groupId>
  167. <artifactId>nd-zwdd-starter</artifactId>
  168. <exclusions>
  169. <exclusion>
  170. <groupId>org.slf4j</groupId>
  171. <artifactId>slf4j-log4j12</artifactId>
  172. </exclusion>
  173. </exclusions>
  174. <version>1.0.0</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.dm</groupId>
  178. <artifactId>Dm8JdbcDriver</artifactId>
  179. <version>1.8</version>
  180. <scope>system</scope>
  181. <systemPath>${project.basedir}/lib/DmJdbcDriver18.jar</systemPath>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.ningdatech</groupId>
  185. <artifactId>nd-cache-starter</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.ningdatech</groupId>
  189. <artifactId>nd-irs-starter</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.ningdatech</groupId>
  193. <artifactId>nd-yxt-starter</artifactId>
  194. <version>1.0.0</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.alibaba</groupId>
  198. <artifactId>easyexcel-core</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.ningdatech</groupId>
  202. <artifactId>nd-file-starter</artifactId>
  203. </dependency>
  204. <dependency>
  205. <groupId>com.ningdatech</groupId>
  206. <artifactId>nd-flowable-starter</artifactId>
  207. <exclusions>
  208. <exclusion>
  209. <groupId>com.baomidou</groupId>
  210. <artifactId>mybatis-plus-boot-starter</artifactId>
  211. </exclusion>
  212. <exclusion>
  213. <groupId>com.alibaba</groupId>
  214. <artifactId>druid-spring-boot-starter</artifactId>
  215. </exclusion>
  216. </exclusions>
  217. </dependency>
  218. <!--浙政钉-->
  219. <dependency>
  220. <groupId>com.alibaba.xxpt</groupId>
  221. <artifactId>zwdd</artifactId>
  222. <version>1.2.0</version>
  223. <scope>system</scope>
  224. <systemPath>${basedir}/src/lib/zwdd-sdk-java-1.2.0.jar</systemPath>
  225. </dependency>
  226. <dependency>
  227. <groupId>joda-time</groupId>
  228. <artifactId>joda-time</artifactId>
  229. </dependency>
  230. <!--状态机-->
  231. <dependency>
  232. <groupId>org.springframework.statemachine</groupId>
  233. <artifactId>spring-statemachine-core</artifactId>
  234. </dependency>
  235. <!-- PDF生成 -->
  236. <dependency>
  237. <groupId>com.itextpdf</groupId>
  238. <artifactId>itextpdf</artifactId>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.itextpdf</groupId>
  242. <artifactId>itext-asian</artifactId>
  243. </dependency>
  244. <dependency>
  245. <groupId>com.itextpdf.tool</groupId>
  246. <artifactId>xmlworker</artifactId>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.xhtmlrenderer</groupId>
  250. <artifactId>flying-saucer-pdf-itext5</artifactId>
  251. </dependency>
  252. <!--将html转换成pdf-->
  253. <dependency>
  254. <groupId>com.itextpdf</groupId>
  255. <artifactId>html2pdf</artifactId>
  256. </dependency>
  257. <!--导入导出-->
  258. <dependency>
  259. <groupId>cn.afterturn</groupId>
  260. <artifactId>easypoi-base</artifactId>
  261. </dependency>
  262. <dependency>
  263. <groupId>com.agent</groupId>
  264. <artifactId>agent-boot</artifactId>
  265. <version>1.3.22</version>
  266. <scope>system</scope>
  267. <systemPath>${project.basedir}/lib/agent-boot-1.3.22.0215.jar</systemPath>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.agent</groupId>
  271. <artifactId>agent-boot</artifactId>
  272. <version>1.3.22</version>
  273. <scope>system</scope>
  274. <systemPath>${project.basedir}/lib/agent-boot-1.3.22.0215.jar</systemPath>
  275. </dependency>
  276. <dependency>
  277. <groupId>com.suwell</groupId>
  278. <artifactId>suwell-agent-http</artifactId>
  279. <version>1.7</version>
  280. <scope>system</scope>
  281. <systemPath>${project.basedir}/lib/suwell-agent-http-1.7.220630.jar</systemPath>
  282. </dependency>
  283. <dependency>
  284. <groupId>com.suwell</groupId>
  285. <artifactId>suwell-agent-wrapper</artifactId>
  286. <version>1.6</version>
  287. <scope>system</scope>
  288. <systemPath>${project.basedir}/lib/suwell-agent-wrapper-1.6.221208.jar</systemPath>
  289. </dependency>
  290. <dependency>
  291. <groupId>com.slf4j</groupId>
  292. <artifactId>slf4j-api</artifactId>
  293. <version>1.7.29</version>
  294. <scope>system</scope>
  295. <systemPath>${project.basedir}/lib/slf4j-api-1.7.29.jar</systemPath>
  296. </dependency>
  297. <dependency>
  298. <groupId>com.httpclient</groupId>
  299. <artifactId>httpclient</artifactId>
  300. <version>4.5.13</version>
  301. <scope>system</scope>
  302. <systemPath>${project.basedir}/lib/httpclient-4.5.13.jar</systemPath>
  303. </dependency>
  304. <dependency>
  305. <groupId>com.httpcore</groupId>
  306. <artifactId>httpcore</artifactId>
  307. <version>4.4.13</version>
  308. <scope>system</scope>
  309. <systemPath>${project.basedir}/lib/httpcore-4.4.13.jar</systemPath>
  310. </dependency>
  311. <dependency>
  312. <groupId>com.httpmime</groupId>
  313. <artifactId>httpmime</artifactId>
  314. <version>4.5.13</version>
  315. <scope>system</scope>
  316. <systemPath>${project.basedir}/lib/httpmime-4.5.13.jar</systemPath>
  317. </dependency>
  318. <dependency>
  319. <groupId>com.jbArchivesTools</groupId>
  320. <artifactId>jbArchivesTools</artifactId>
  321. <version>1.0</version>
  322. <scope>system</scope>
  323. <systemPath>${project.basedir}/lib/jbArchivesTools-1.0-SNAPSHOT.jar</systemPath>
  324. </dependency>
  325. <dependency>
  326. <groupId>com.suwell</groupId>
  327. <artifactId>suwell-convert-base</artifactId>
  328. <version>1.5.19</version>
  329. <scope>system</scope>
  330. <systemPath>${project.basedir}/lib/suwell-convert-base-1.5.19.0408.jar</systemPath>
  331. </dependency>
  332. <dependency>
  333. <groupId>com.gson</groupId>
  334. <artifactId>gson</artifactId>
  335. <version>2.8.0</version>
  336. <scope>system</scope>
  337. <systemPath>${project.basedir}/lib/gson-2.8.0.jar</systemPath>
  338. </dependency>
  339. <dependency>
  340. <groupId>com.suwell</groupId>
  341. <artifactId>suwell-rpc-manager-client</artifactId>
  342. <version>2.7</version>
  343. <scope>system</scope>
  344. <systemPath>${project.basedir}/lib/suwell-rpc-manager-client-2.7.211125.jar</systemPath>
  345. </dependency>
  346. <dependency>
  347. <groupId>com.suwell</groupId>
  348. <artifactId>suwell-packet-wrapper</artifactId>
  349. <version>1.21</version>
  350. <scope>system</scope>
  351. <systemPath>${project.basedir}/lib/suwell-packet-wrapper-1.21.230306.jar</systemPath>
  352. </dependency>
  353. <dependency>
  354. <groupId>com.dom4j</groupId>
  355. <artifactId>dom4j</artifactId>
  356. <version>2.0.2</version>
  357. <scope>system</scope>
  358. <systemPath>${project.basedir}/lib/dom4j-2.0.2.jar</systemPath>
  359. </dependency>
  360. </dependencies>
  361. <!-- 打包 -->
  362. <!--配置环境的profile-->
  363. <profiles>
  364. <profile>
  365. <id>dev</id>
  366. <properties>
  367. <!--使用${environment}获取值-->
  368. <environment>dev</environment>
  369. </properties>
  370. </profile>
  371. <profile>
  372. <id>test</id>
  373. <properties>
  374. <environment>test</environment>
  375. </properties>
  376. </profile>
  377. <profile>
  378. <id>pre</id>
  379. <properties>
  380. <environment>pre</environment>
  381. </properties>
  382. </profile>
  383. <profile>
  384. <id>prod</id>
  385. <properties>
  386. <environment>prod</environment>
  387. </properties>
  388. </profile>
  389. </profiles>
  390. <build>
  391. <resources>
  392. <resource>
  393. <directory>src/main/resources</directory>
  394. <includes>
  395. <include>**/*</include>
  396. </includes>
  397. </resource>
  398. <resource>
  399. <directory>src/main/java</directory>
  400. <includes>
  401. <include>**/*.xml</include>
  402. </includes>
  403. </resource>
  404. <resource>
  405. <directory>src/main/lib</directory>
  406. <targetPath>BOOT-INF/lib/</targetPath>
  407. <includes>
  408. <include>**/*.jar</include>
  409. </includes>
  410. </resource>
  411. <resource>
  412. <directory>src/main/resources</directory>
  413. <targetPath>BOOT-INF/classes/</targetPath>
  414. </resource>
  415. </resources>
  416. <finalName>${project.artifactId}</finalName>
  417. <plugins>
  418. <plugin>
  419. <groupId>org.springframework.boot</groupId>
  420. <artifactId>spring-boot-maven-plugin</artifactId>
  421. <version>2.6.8</version>
  422. <configuration>
  423. <includeSystemScope>true</includeSystemScope>
  424. </configuration>
  425. <executions>
  426. <execution>
  427. <goals>
  428. <goal>repackage</goal>
  429. </goals>
  430. </execution>
  431. </executions>
  432. </plugin>
  433. <!-- 跳过单元测试 -->
  434. <plugin>
  435. <groupId>org.apache.maven.plugins</groupId>
  436. <artifactId>maven-surefire-plugin</artifactId>
  437. <configuration>
  438. <skipTests>true</skipTests>
  439. </configuration>
  440. </plugin>
  441. </plugins>
  442. </build>
  443. </project>