山东众工仓储管理系统后台程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.th.demo</groupId>
  6. <artifactId>thware_zg</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>ugo Maven Webapp</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. <org.springframework.version>4.3.5.RELEASE</org.springframework.version>
  17. <poi.version>3.17</poi.version>
  18. <itext.version>5.5.12</itext.version>
  19. <log4j.version>2.15.0</log4j.version>
  20. <activiti.version>5.22.0</activiti.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.11</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-context</artifactId>
  32. <version>${org.springframework.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-aspects</artifactId>
  37. <version>${org.springframework.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-jdbc</artifactId>
  42. <version>${org.springframework.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-web</artifactId>
  47. <version>${org.springframework.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-tx</artifactId>
  52. <version>${org.springframework.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-webmvc</artifactId>
  57. <version>${org.springframework.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-context-support</artifactId>
  62. <version>${org.springframework.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-instrument</artifactId>
  67. <version>${org.springframework.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-instrument-tomcat</artifactId>
  72. <version>${org.springframework.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-jms</artifactId>
  77. <version>${org.springframework.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-messaging</artifactId>
  82. <version>${org.springframework.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-oxm</artifactId>
  87. <version>${org.springframework.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-webmvc-portlet</artifactId>
  92. <version>${org.springframework.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-websocket</artifactId>
  97. <version>${org.springframework.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-orm</artifactId>
  102. <version>${org.springframework.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework</groupId>
  106. <artifactId>spring-test</artifactId>
  107. <version>${org.springframework.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>c3p0</groupId>
  111. <artifactId>c3p0</artifactId>
  112. <version>0.9.1.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.alibaba</groupId>
  116. <artifactId>druid</artifactId>
  117. <version>1.1.12</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.google.code.gson</groupId>
  121. <artifactId>gson</artifactId>
  122. <version>2.8.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.mybatis</groupId>
  126. <artifactId>mybatis-spring</artifactId>
  127. <version>1.3.1</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.slf4j</groupId>
  131. <artifactId>slf4j-api</artifactId>
  132. <version>1.7.25</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.lmax</groupId>
  136. <artifactId>disruptor</artifactId>
  137. <version>3.3.6</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.logging.log4j</groupId>
  141. <artifactId>log4j-slf4j-impl</artifactId>
  142. <version>${log4j.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.logging.log4j</groupId>
  146. <artifactId>log4j-api</artifactId>
  147. <version>${log4j.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.logging.log4j</groupId>
  151. <artifactId>log4j-core</artifactId>
  152. <version>${log4j.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.logging.log4j</groupId>
  156. <artifactId>log4j-web</artifactId>
  157. <version>${log4j.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.mybatis</groupId>
  161. <artifactId>mybatis</artifactId>
  162. <version>3.4.4</version>
  163. <type>pom</type>
  164. </dependency>
  165. <dependency>
  166. <groupId>jstl</groupId>
  167. <artifactId>jstl</artifactId>
  168. <version>1.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>commons-io</groupId>
  172. <artifactId>commons-io</artifactId>
  173. <version>2.4</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>commons-fileupload</groupId>
  177. <artifactId>commons-fileupload</artifactId>
  178. <version>1.3.2</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>commons-dbutils</groupId>
  182. <artifactId>commons-dbutils</artifactId>
  183. <version>1.6</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.aspectj</groupId>
  187. <artifactId>aspectjweaver</artifactId>
  188. <version>1.8.10</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.mybatis</groupId>
  192. <artifactId>mybatis</artifactId>
  193. <version>3.4.4</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>mysql</groupId>
  197. <artifactId>mysql-connector-java</artifactId>
  198. <version>5.1.8</version>
  199. </dependency>
  200. <!--<dependency>-->
  201. <!--<groupId>com.oracle</groupId>-->
  202. <!--<artifactId>ojdbc6</artifactId>-->
  203. <!--<version>11.2.0.1.0</version>-->
  204. <!--</dependency>-->
  205. <dependency>
  206. <groupId>com.mchange</groupId>
  207. <artifactId>mchange-commons-java</artifactId>
  208. <version>0.2.12</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.tomcat</groupId>
  212. <artifactId>servlet-api</artifactId>
  213. <version>6.0.51</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.mybatis.spring.boot</groupId>
  217. <artifactId>mybatis-spring-boot-starter</artifactId>
  218. <version>1.1.1</version>
  219. <exclusions>
  220. <exclusion>
  221. <groupId>ch.qos.logback</groupId>
  222. <artifactId>logback-classic</artifactId>
  223. </exclusion>
  224. <!-- 可选:也可以一并排除spring-boot-starter-logging,但排除logback-classic已经足够 -->
  225. <!--
  226. <exclusion>
  227. <groupId>org.springframework.boot</groupId>
  228. <artifactId>spring-boot-starter-logging</artifactId>
  229. </exclusion>
  230. -->
  231. </exclusions>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.commons</groupId>
  235. <artifactId>commons-lang3</artifactId>
  236. <version>3.0</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.apache.commons</groupId>
  240. <artifactId>commons-collections4</artifactId>
  241. <version>4.1</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.apache.xmlbeans</groupId>
  245. <artifactId>xmlbeans</artifactId>
  246. <version>2.6.0</version>
  247. </dependency>
  248. <!--POI office文档控制jar-->
  249. <dependency>
  250. <groupId>org.apache.poi</groupId>
  251. <artifactId>poi</artifactId>
  252. <version>${poi.version}</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.apache.poi</groupId>
  256. <artifactId>poi-scratchpad</artifactId>
  257. <version>${poi.version}</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.apache.poi</groupId>
  261. <artifactId>poi-ooxml</artifactId>
  262. <version>${poi.version}</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>fr.opensagres.xdocreport</groupId>
  266. <artifactId>xdocreport</artifactId>
  267. <version>2.0.1</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>fr.opensagres.xdocreport</groupId>
  271. <artifactId>fr.opensagres.poi.xwpf.converter.core</artifactId>
  272. <version>2.0.1</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>fr.opensagres.xdocreport</groupId>
  276. <artifactId>fr.opensagres.poi.xwpf.converter.xhtml</artifactId>
  277. <version>2.0.1</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.poi</groupId>
  281. <artifactId>poi-ooxml-schemas</artifactId>
  282. <version>${poi.version}</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.poi</groupId>
  286. <artifactId>ooxml-schemas</artifactId>
  287. <version>1.3</version>
  288. </dependency>
  289. <!--POI office文档控制jar-->
  290. <!--itext pdf-->
  291. <dependency>
  292. <groupId>com.itextpdf</groupId>
  293. <artifactId>itextpdf</artifactId>
  294. <version>5.2.1</version>
  295. </dependency>
  296. <!-- 解决中文显示问题的Jar包 -->
  297. <dependency>
  298. <groupId>com.itextpdf</groupId>
  299. <artifactId>itext-asian</artifactId>
  300. <version>5.2.0</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.projectlombok</groupId>
  304. <artifactId>lombok</artifactId>
  305. <version>1.16.10</version>
  306. <scope>provided</scope>
  307. </dependency>
  308. <!--二维码-->
  309. <dependency>
  310. <groupId>com.google.zxing</groupId>
  311. <artifactId>core</artifactId>
  312. <version>3.3.0</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.google.zxing</groupId>
  316. <artifactId>javase</artifactId>
  317. <version>3.3.0</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.apache.tomcat</groupId>
  321. <artifactId>juli</artifactId>
  322. <version>6.0.47</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>javax.servlet</groupId>
  326. <artifactId>javax.servlet-api</artifactId>
  327. <version>3.1.0</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>com.github.pagehelper</groupId>
  331. <artifactId>pagehelper</artifactId>
  332. <version>5.1.8</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>com.alibaba</groupId>
  336. <artifactId>fastjson</artifactId>
  337. <version>1.2.83</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>com.fasterxml.jackson.core</groupId>
  341. <artifactId>jackson-databind</artifactId>
  342. <version>2.5.0</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>com.fasterxml.jackson.core</groupId>
  346. <artifactId>jackson-core</artifactId>
  347. <version>2.5.0</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>com.fasterxml.jackson.core</groupId>
  351. <artifactId>jackson-annotations</artifactId>
  352. <version>2.5.0</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>org.mybatis.generator</groupId>
  356. <artifactId>mybatis-generator-core</artifactId>
  357. <version>1.3.5</version>
  358. </dependency>
  359. <dependency>
  360. <groupId>org.freemarker</groupId>
  361. <artifactId>freemarker</artifactId>
  362. <version>2.3.28</version>
  363. </dependency>
  364. <dependency>
  365. <groupId>com.auth0</groupId>
  366. <artifactId>java-jwt</artifactId>
  367. <version>2.2.0</version>
  368. </dependency>
  369. <dependency>
  370. <groupId>net.coobird</groupId>
  371. <artifactId>thumbnailator</artifactId>
  372. <version>0.4.8</version>
  373. </dependency>
  374. <dependency>
  375. <groupId>antlr</groupId>
  376. <artifactId>antlr</artifactId>
  377. <version>2.7.2</version>
  378. </dependency>
  379. <dependency>
  380. <groupId>com.bstek.ureport</groupId>
  381. <artifactId>ureport2-console</artifactId>
  382. <version>2.2.9</version>
  383. <exclusions>
  384. <exclusion>
  385. <groupId>ch.qos.logback</groupId>
  386. <artifactId>logback-classic</artifactId>
  387. </exclusion>
  388. </exclusions>
  389. </dependency>
  390. <dependency>
  391. <groupId>org.xerial</groupId>
  392. <artifactId>sqlite-jdbc</artifactId>
  393. <version>3.8.11.2</version>
  394. </dependency>
  395. <dependency>
  396. <groupId>com.litai</groupId>
  397. <artifactId>litai</artifactId>
  398. <version>1.0</version>
  399. <scope>system</scope>
  400. <systemPath>${project.basedir}/src/main/resource/lib/litai-1.0.jar</systemPath>
  401. </dependency>
  402. <!--工作流引擎activiti-->
  403. <dependency>
  404. <groupId>org.activiti</groupId>
  405. <artifactId>activiti-engine</artifactId>
  406. <version>${activiti.version}</version>
  407. <exclusions>
  408. <exclusion>
  409. <groupId>org.slf4j</groupId>
  410. <artifactId>slf4j-log4j12</artifactId>
  411. </exclusion>
  412. </exclusions>
  413. </dependency>
  414. <dependency>
  415. <groupId>org.activiti</groupId>
  416. <artifactId>activiti-spring</artifactId>
  417. <version>${activiti.version}</version>
  418. <exclusions>
  419. <exclusion>
  420. <groupId>org.slf4j</groupId>
  421. <artifactId>slf4j-log4j12</artifactId>
  422. </exclusion>
  423. </exclusions>
  424. </dependency>
  425. <dependency>
  426. <groupId>org.activiti</groupId>
  427. <artifactId>activiti-json-converter</artifactId>
  428. <version>${activiti.version}</version>
  429. <exclusions>
  430. <exclusion>
  431. <groupId>org.slf4j</groupId>
  432. <artifactId>slf4j-log4j12</artifactId>
  433. </exclusion>
  434. </exclusions>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.activiti</groupId>
  438. <artifactId>activiti-explorer</artifactId>
  439. <version>${activiti.version}</version>
  440. <exclusions>
  441. <exclusion>
  442. <artifactId>vaadin</artifactId>
  443. <groupId>com.vaadin</groupId>
  444. </exclusion>
  445. <exclusion>
  446. <artifactId>dcharts-widget</artifactId>
  447. <groupId>org.vaadin.addons</groupId>
  448. </exclusion>
  449. <exclusion>
  450. <artifactId>activiti-simple-workflow</artifactId>
  451. <groupId>org.activiti</groupId>
  452. </exclusion>
  453. <exclusion>
  454. <groupId>org.slf4j</groupId>
  455. <artifactId>slf4j-log4j12</artifactId>
  456. </exclusion>
  457. </exclusions>
  458. </dependency>
  459. <dependency>
  460. <groupId>org.activiti</groupId>
  461. <artifactId>activiti-modeler</artifactId>
  462. <version>${activiti.version}</version>
  463. <exclusions>
  464. <exclusion>
  465. <groupId>org.slf4j</groupId>
  466. <artifactId>slf4j-log4j12</artifactId>
  467. </exclusion>
  468. </exclusions>
  469. </dependency>
  470. <dependency>
  471. <groupId>org.activiti</groupId>
  472. <artifactId>activiti-rest</artifactId>
  473. <version>${activiti.version}</version>
  474. <exclusions>
  475. <exclusion>
  476. <groupId>org.slf4j</groupId>
  477. <artifactId>slf4j-log4j12</artifactId>
  478. </exclusion>
  479. </exclusions>
  480. </dependency>
  481. <dependency>
  482. <groupId>org.activiti</groupId>
  483. <artifactId>activiti-diagram-rest</artifactId>
  484. <version>${activiti.version}</version>
  485. <exclusions>
  486. <exclusion>
  487. <groupId>org.slf4j</groupId>
  488. <artifactId>slf4j-log4j12</artifactId>
  489. </exclusion>
  490. </exclusions>
  491. </dependency>
  492. <dependency>
  493. <groupId>org.activiti</groupId>
  494. <artifactId>activiti-cxf</artifactId>
  495. <version>${activiti.version}</version>
  496. <exclusions>
  497. <exclusion>
  498. <groupId>org.slf4j</groupId>
  499. <artifactId>slf4j-log4j12</artifactId>
  500. </exclusion>
  501. </exclusions>
  502. </dependency>
  503. <dependency>
  504. <groupId>org.activiti</groupId>
  505. <artifactId>activiti-image-generator</artifactId>
  506. <version>${activiti.version}</version>
  507. <exclusions>
  508. <exclusion>
  509. <groupId>org.slf4j</groupId>
  510. <artifactId>slf4j-log4j12</artifactId>
  511. </exclusion>
  512. </exclusions>
  513. </dependency>
  514. </dependencies>
  515. <profiles>
  516. <profile> <!-- 本地开发环境 -->
  517. <id>localhost</id>
  518. <properties>
  519. <profiles.active>localhost</profiles.active>
  520. </properties>
  521. <activation>
  522. <activeByDefault>true</activeByDefault>
  523. </activation>
  524. </profile>
  525. <profile> <!-- 开发环境 -->
  526. <id>development</id>
  527. <properties>
  528. <profiles.active>development</profiles.active>
  529. </properties>
  530. </profile>
  531. <profile> <!-- 生产环境 -->
  532. <id>production</id>
  533. <properties>
  534. <profiles.active>production</profiles.active>
  535. </properties>
  536. </profile>
  537. </profiles>
  538. <build>
  539. <finalName>thware_zg</finalName>
  540. <plugins>
  541. <plugin>
  542. <groupId>org.apache.maven.plugins</groupId>
  543. <artifactId>maven-compiler-plugin</artifactId>
  544. <configuration>
  545. <source>8</source>
  546. <target>8</target>
  547. </configuration>
  548. </plugin>
  549. </plugins>
  550. <resources>
  551. <resource>
  552. <directory>src/main/resource</directory>
  553. <excludes>
  554. <exclude>localhost/**</exclude>
  555. <exclude>development/**</exclude>
  556. <exclude>production/**</exclude>
  557. </excludes>
  558. </resource>
  559. <resource>
  560. <directory>src/main/resource/${profiles.active}</directory>
  561. </resource>
  562. </resources>
  563. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  564. <plugins>
  565. <plugin>
  566. <artifactId>maven-clean-plugin</artifactId>
  567. <version>3.0.0</version>
  568. </plugin>
  569. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  570. <plugin>
  571. <artifactId>maven-resources-plugin</artifactId>
  572. <version>3.0.2</version>
  573. </plugin>
  574. <plugin>
  575. <artifactId>maven-compiler-plugin</artifactId>
  576. <version>3.7.0</version>
  577. </plugin>
  578. <plugin>
  579. <artifactId>maven-surefire-plugin</artifactId>
  580. <version>2.20.1</version>
  581. </plugin>
  582. <plugin>
  583. <artifactId>maven-war-plugin</artifactId>
  584. <version>3.2.0</version>
  585. <configuration>
  586. <outputDirectory>c:\thware2</outputDirectory>
  587. <webResources>
  588. <resource>
  589. <directory>${project.basedir}/src/main/resource/lib</directory>
  590. <targetPath>WEB-INF/lib</targetPath>
  591. <includes>
  592. <include>**/*.jar</include>
  593. </includes>
  594. </resource>
  595. </webResources>
  596. </configuration>
  597. </plugin>
  598. <plugin>
  599. <artifactId>maven-install-plugin</artifactId>
  600. <version>2.5.2</version>
  601. </plugin>
  602. <plugin>
  603. <artifactId>maven-deploy-plugin</artifactId>
  604. <version>2.8.2</version>
  605. </plugin>
  606. </plugins>
  607. </pluginManagement>
  608. </build>
  609. </project>