pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com</groupId>
  5. <artifactId>kdjx</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>kdjx Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <commons-lang3.version>3.4</commons-lang3.version>
  12. <commons-collection.version>3.2.1</commons-collection.version>
  13. <maven_compiler_plugin_version>2.3.2</maven_compiler_plugin_version>
  14. <java_source_version>1.8</java_source_version>
  15. <java_target_version>1.8</java_target_version>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. <file_encoding>UTF-8</file_encoding>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.jfinal</groupId>
  26. <artifactId>jfinal</artifactId>
  27. <version>3.3</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.12</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-lang3</artifactId>
  38. <version>${commons-lang3.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-collections</groupId>
  42. <artifactId>commons-collections</artifactId>
  43. <version>${commons-collection.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.oracle</groupId>
  47. <artifactId>ojdbc6</artifactId>
  48. <version>11.2.0.4.0</version>
  49. </dependency>
  50. <!--<dependency>-->
  51. <!--<groupId>com.microsoft.sqlserver</groupId>-->
  52. <!--<artifactId>sqljdbc4</artifactId>-->
  53. <!--<version>4.0</version>-->
  54. <!--</dependency>-->
  55. <dependency>
  56. <groupId>cn.fsdev</groupId>
  57. <artifactId>jfinal-mail-plugin</artifactId>
  58. <version>3.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.servlet.jsp</groupId>
  62. <artifactId>javax.servlet.jsp-api</artifactId>
  63. <version>2.3.1</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.servlet</groupId>
  68. <artifactId>javax.servlet-api</artifactId>
  69. <version>3.0.1</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.slf4j</groupId>
  74. <artifactId>slf4j-api</artifactId>
  75. <version>1.7.29</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.slf4j</groupId>
  79. <artifactId>slf4j-log4j12</artifactId>
  80. <version>1.7.29</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.slf4j</groupId>
  84. <artifactId>jcl-over-slf4j</artifactId>
  85. <version>1.7.29</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.google.code.gson</groupId>
  89. <artifactId>gson</artifactId>
  90. <version>2.2.4</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>javax.wsdl</groupId>
  94. <artifactId>javax.wsdl</artifactId>
  95. <version>1.6.2.v201012040545</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.sf.ehcache</groupId>
  99. <artifactId>ehcache</artifactId>
  100. <version>2.10.4</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>fastjson</artifactId>
  105. <version>1.2.41</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>it.sauronsoftware.cron4j</groupId>
  109. <artifactId>cron4j</artifactId>
  110. <version>2.2.5</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>net.sourceforge.jexcelapi</groupId>
  114. <artifactId>jxl</artifactId>
  115. <version>2.6.12</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>cn.fsdev</groupId>
  119. <artifactId>jfinal-mail-plugin</artifactId>
  120. <version>3.0</version>
  121. <exclusions>
  122. <exclusion>
  123. <groupId>javax.mail</groupId>
  124. <artifactId>mail</artifactId>
  125. </exclusion>
  126. </exclusions>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.kingdee</groupId>
  130. <artifactId>shr_osfws_client</artifactId>
  131. <!--<version>8.63</version>-->
  132. <!--<version>9.0t</version>-->
  133. <version>9.0prod</version>
  134. <!--<version>9.0prod</version>-->
  135. </dependency>
  136. <!-- <dependency>
  137. <groupId>com.excel.import.export</groupId>
  138. <artifactId>excel-import-export</artifactId>
  139. <version>1.0</version>
  140. </dependency>-->
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>druid</artifactId>
  144. <version>1.0.31</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.jfinal</groupId>
  148. <artifactId>cos</artifactId>
  149. <version>2017.5</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>javax.servlet</groupId>
  153. <artifactId>jstl</artifactId>
  154. <version>1.2</version>
  155. </dependency>
  156. <!--<dependency>-->
  157. <!--<groupId>com.xiaoleilu</groupId>-->
  158. <!--<artifactId>hutool</artifactId>-->
  159. <!--<version>2.16.2</version>-->
  160. <!--</dependency>-->
  161. <dependency>
  162. <groupId>cn.hutool</groupId>
  163. <artifactId>hutool-all</artifactId>
  164. <version>5.3.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.axis</groupId>
  168. <artifactId>axis</artifactId>
  169. <version>1.4</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>axis</groupId>
  173. <artifactId>axis-jaxrpc</artifactId>
  174. <version>1.4</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>commons-discovery</groupId>
  178. <artifactId>commons-discovery</artifactId>
  179. <version>0.2</version>
  180. </dependency>
  181. <!-- 导报表工具需要的包 -->
  182. <dependency>
  183. <groupId>commons-beanutils</groupId>
  184. <artifactId>commons-beanutils</artifactId>
  185. <version>1.6</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>commons-digester</groupId>
  189. <artifactId>commons-digester</artifactId>
  190. <version>1.6</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.lowagie</groupId>
  194. <artifactId>itext</artifactId>
  195. <version>2.1.3</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>net.sf.jasperreports</groupId>
  199. <artifactId>jasperreports</artifactId>
  200. <version>4.0.2</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.poi</groupId>
  204. <artifactId>poi-ooxml</artifactId>
  205. <version>3.9</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.codehaus.groovy</groupId>
  209. <artifactId>groovy-all</artifactId>
  210. <version>2.4.7</version>
  211. </dependency>
  212. <!-- 导报表工具需要的包 -->
  213. <dependency>
  214. <groupId>log4j</groupId>
  215. <artifactId>log4j</artifactId>
  216. <version>1.2.15</version>
  217. <exclusions>
  218. <exclusion>
  219. <groupId>com.sun.jmx</groupId>
  220. <artifactId>jmxri</artifactId>
  221. </exclusion>
  222. <exclusion>
  223. <groupId>com.sun.jdmk</groupId>
  224. <artifactId>jmxtools</artifactId>
  225. </exclusion>
  226. <exclusion>
  227. <groupId>javax.jms</groupId>
  228. <artifactId>jms</artifactId>
  229. </exclusion>
  230. </exclusions>
  231. </dependency>
  232. <!--<dependency>
  233. <groupId>com.oracle</groupId>
  234. <artifactId>ojdbc6</artifactId>
  235. <version>RELEASE</version>
  236. <scope>compile</scope>
  237. </dependency>-->
  238. </dependencies>
  239. <build>
  240. <finalName>kdjx</finalName>
  241. <plugins>
  242. <plugin>
  243. <groupId>org.apache.maven.plugins</groupId>
  244. <artifactId>maven-war-plugin</artifactId>
  245. <version>3.2.2</version>
  246. <configuration>
  247. <warSourceExcludes>js-old/*,template-old/*,_view/jx-old/*</warSourceExcludes>
  248. <packagingExcludes></packagingExcludes>
  249. <webResources>
  250. <resource>
  251. <directory>src/main/resources/</directory>
  252. <targetPath>WEB-INF/classes</targetPath>
  253. <filtering>true</filtering>
  254. </resource>
  255. </webResources>
  256. </configuration>
  257. </plugin>
  258. <!-- 配置tomcat插件 -->
  259. <plugin>
  260. <groupId>org.apache.tomcat.maven</groupId>
  261. <artifactId>tomcat7-maven-plugin</artifactId>
  262. <configuration>
  263. <port>8082</port>
  264. <path>/</path>
  265. <uriEncoding>UTF-8</uriEncoding>
  266. </configuration>
  267. </plugin>
  268. </plugins>
  269. </build>
  270. </project>