杭州市委办项管
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.

461 wiersze
16KB

  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.ningdatech</groupId>
  7. <artifactId>project-management</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>pmapi</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. <!--KingBase-->
  177. <dependency>
  178. <groupId>com.kingbase8</groupId>
  179. <artifactId>kingbase8-8.2.0</artifactId>
  180. <version>8.2.0</version>
  181. <scope>system</scope>
  182. <systemPath>${project.basedir}/src/lib/kingbase8-8.2.0.jar</systemPath>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.ningdatech</groupId>
  186. <artifactId>nd-cache-starter</artifactId>
  187. </dependency>
  188. <dependency>
  189. <groupId>com.ningdatech</groupId>
  190. <artifactId>nd-irs-starter</artifactId>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.ningdatech</groupId>
  194. <artifactId>nd-yxt-starter</artifactId>
  195. <version>1.0.0</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.alibaba</groupId>
  199. <artifactId>easyexcel-core</artifactId>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.ningdatech</groupId>
  203. <artifactId>nd-file-starter</artifactId>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.ningdatech</groupId>
  207. <artifactId>nd-flowable-starter</artifactId>
  208. <exclusions>
  209. <exclusion>
  210. <groupId>com.baomidou</groupId>
  211. <artifactId>mybatis-plus-boot-starter</artifactId>
  212. </exclusion>
  213. </exclusions>
  214. </dependency>
  215. <!--浙政钉-->
  216. <dependency>
  217. <groupId>com.alibaba.xxpt</groupId>
  218. <artifactId>zwdd</artifactId>
  219. <version>1.2.0</version>
  220. <scope>system</scope>
  221. <systemPath>${basedir}/src/lib/zwdd-sdk-java-1.2.0.jar</systemPath>
  222. </dependency>
  223. <dependency>
  224. <groupId>joda-time</groupId>
  225. <artifactId>joda-time</artifactId>
  226. </dependency>
  227. <!--状态机-->
  228. <dependency>
  229. <groupId>org.springframework.statemachine</groupId>
  230. <artifactId>spring-statemachine-core</artifactId>
  231. </dependency>
  232. <!-- PDF生成 -->
  233. <dependency>
  234. <groupId>com.itextpdf</groupId>
  235. <artifactId>itextpdf</artifactId>
  236. </dependency>
  237. <dependency>
  238. <groupId>com.itextpdf</groupId>
  239. <artifactId>itext-asian</artifactId>
  240. </dependency>
  241. <dependency>
  242. <groupId>com.itextpdf.tool</groupId>
  243. <artifactId>xmlworker</artifactId>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.xhtmlrenderer</groupId>
  247. <artifactId>flying-saucer-pdf-itext5</artifactId>
  248. </dependency>
  249. <!--将html转换成pdf-->
  250. <dependency>
  251. <groupId>com.itextpdf</groupId>
  252. <artifactId>html2pdf</artifactId>
  253. </dependency>
  254. <!--导入导出-->
  255. <dependency>
  256. <groupId>cn.afterturn</groupId>
  257. <artifactId>easypoi-base</artifactId>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.agent</groupId>
  261. <artifactId>agent-boot</artifactId>
  262. <version>1.3.22</version>
  263. <scope>system</scope>
  264. <systemPath>${project.basedir}/lib/agent-boot-1.3.22.0215.jar</systemPath>
  265. </dependency>
  266. <dependency>
  267. <groupId>com.agent</groupId>
  268. <artifactId>agent-boot</artifactId>
  269. <version>1.3.22</version>
  270. <scope>system</scope>
  271. <systemPath>${project.basedir}/lib/agent-boot-1.3.22.0215.jar</systemPath>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.suwell</groupId>
  275. <artifactId>suwell-agent-http</artifactId>
  276. <version>1.7</version>
  277. <scope>system</scope>
  278. <systemPath>${project.basedir}/lib/suwell-agent-http-1.7.220630.jar</systemPath>
  279. </dependency>
  280. <dependency>
  281. <groupId>com.suwell</groupId>
  282. <artifactId>suwell-agent-wrapper</artifactId>
  283. <version>1.6</version>
  284. <scope>system</scope>
  285. <systemPath>${project.basedir}/lib/suwell-agent-wrapper-1.6.221208.jar</systemPath>
  286. </dependency>
  287. <dependency>
  288. <groupId>com.slf4j</groupId>
  289. <artifactId>slf4j-api</artifactId>
  290. <version>1.7.29</version>
  291. <scope>system</scope>
  292. <systemPath>${project.basedir}/lib/slf4j-api-1.7.29.jar</systemPath>
  293. </dependency>
  294. <dependency>
  295. <groupId>com.httpclient</groupId>
  296. <artifactId>httpclient</artifactId>
  297. <version>4.5.13</version>
  298. <scope>system</scope>
  299. <systemPath>${project.basedir}/lib/httpclient-4.5.13.jar</systemPath>
  300. </dependency>
  301. <dependency>
  302. <groupId>com.httpcore</groupId>
  303. <artifactId>httpcore</artifactId>
  304. <version>4.4.13</version>
  305. <scope>system</scope>
  306. <systemPath>${project.basedir}/lib/httpcore-4.4.13.jar</systemPath>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.httpmime</groupId>
  310. <artifactId>httpmime</artifactId>
  311. <version>4.5.13</version>
  312. <scope>system</scope>
  313. <systemPath>${project.basedir}/lib/httpmime-4.5.13.jar</systemPath>
  314. </dependency>
  315. <dependency>
  316. <groupId>com.jbArchivesTools</groupId>
  317. <artifactId>jbArchivesTools</artifactId>
  318. <version>1.0</version>
  319. <scope>system</scope>
  320. <systemPath>${project.basedir}/lib/jbArchivesTools-1.0-SNAPSHOT.jar</systemPath>
  321. </dependency>
  322. <dependency>
  323. <groupId>com.suwell</groupId>
  324. <artifactId>suwell-convert-base</artifactId>
  325. <version>1.5.19</version>
  326. <scope>system</scope>
  327. <systemPath>${project.basedir}/lib/suwell-convert-base-1.5.19.0408.jar</systemPath>
  328. </dependency>
  329. <dependency>
  330. <groupId>com.gson</groupId>
  331. <artifactId>gson</artifactId>
  332. <version>2.8.0</version>
  333. <scope>system</scope>
  334. <systemPath>${project.basedir}/lib/gson-2.8.0.jar</systemPath>
  335. </dependency>
  336. <dependency>
  337. <groupId>com.suwell</groupId>
  338. <artifactId>suwell-rpc-manager-client</artifactId>
  339. <version>2.7</version>
  340. <scope>system</scope>
  341. <systemPath>${project.basedir}/lib/suwell-rpc-manager-client-2.7.211125.jar</systemPath>
  342. </dependency>
  343. <dependency>
  344. <groupId>com.suwell</groupId>
  345. <artifactId>suwell-packet-wrapper</artifactId>
  346. <version>1.21</version>
  347. <scope>system</scope>
  348. <systemPath>${project.basedir}/lib/suwell-packet-wrapper-1.21.230306.jar</systemPath>
  349. </dependency>
  350. <dependency>
  351. <groupId>com.dom4j</groupId>
  352. <artifactId>dom4j</artifactId>
  353. <version>2.0.2</version>
  354. <scope>system</scope>
  355. <systemPath>${project.basedir}/lib/dom4j-2.0.2.jar</systemPath>
  356. </dependency>
  357. </dependencies>
  358. <!-- 打包 -->
  359. <!--配置环境的profile-->
  360. <profiles>
  361. <profile>
  362. <id>dev</id>
  363. <properties>
  364. <!--使用${environment}获取值-->
  365. <environment>dev</environment>
  366. </properties>
  367. </profile>
  368. <profile>
  369. <id>test</id>
  370. <properties>
  371. <environment>test</environment>
  372. </properties>
  373. </profile>
  374. <profile>
  375. <id>pre</id>
  376. <properties>
  377. <environment>pre</environment>
  378. </properties>
  379. </profile>
  380. <profile>
  381. <id>prod</id>
  382. <properties>
  383. <environment>prod</environment>
  384. </properties>
  385. </profile>
  386. </profiles>
  387. <build>
  388. <resources>
  389. <resource>
  390. <directory>src/main/resources</directory>
  391. <includes>
  392. <include>**/*</include>
  393. </includes>
  394. </resource>
  395. <resource>
  396. <directory>src/main/java</directory>
  397. <includes>
  398. <include>**/*.xml</include>
  399. </includes>
  400. </resource>
  401. <resource>
  402. <directory>src/main/lib</directory>
  403. <targetPath>BOOT-INF/lib/</targetPath>
  404. <includes>
  405. <include>**/*.jar</include>
  406. </includes>
  407. </resource>
  408. <resource>
  409. <directory>src/main/resources</directory>
  410. <targetPath>BOOT-INF/classes/</targetPath>
  411. </resource>
  412. </resources>
  413. <finalName>${project.artifactId}</finalName>
  414. <plugins>
  415. <plugin>
  416. <groupId>org.springframework.boot</groupId>
  417. <artifactId>spring-boot-maven-plugin</artifactId>
  418. <version>2.6.8</version>
  419. <configuration>
  420. <includeSystemScope>true</includeSystemScope>
  421. </configuration>
  422. <executions>
  423. <execution>
  424. <goals>
  425. <goal>repackage</goal>
  426. </goals>
  427. </execution>
  428. </executions>
  429. </plugin>
  430. <!-- 跳过单元测试 -->
  431. <plugin>
  432. <groupId>org.apache.maven.plugins</groupId>
  433. <artifactId>maven-surefire-plugin</artifactId>
  434. <configuration>
  435. <skipTests>true</skipTests>
  436. </configuration>
  437. </plugin>
  438. </plugins>
  439. </build>
  440. </project>