pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.loygra</groupId>
  5. <artifactId>mooring</artifactId>
  6. <version>1.0</version>
  7. <packaging>war</packaging>
  8. <name>mooring</name>
  9. <properties>
  10. <java-version>1.7</java-version>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <org.springframework-version>4.0.1.RELEASE</org.springframework-version>
  13. </properties>
  14. <dependencies>
  15. <!-- urlrewrite -->
  16. <dependency>
  17. <groupId>org.tuckey</groupId>
  18. <artifactId>urlrewrite</artifactId>
  19. <version>2.5.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>3.8.1</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.httpcomponents</groupId>
  29. <artifactId>httpclient</artifactId>
  30. <version>4.3.5</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-httpclient</groupId>
  34. <artifactId>commons-httpclient</artifactId>
  35. <version>3.0</version>
  36. </dependency>
  37. <!-- json-lib -->
  38. <dependency>
  39. <groupId>net.sf.json-lib</groupId>
  40. <artifactId>json-lib</artifactId>
  41. <version>2.4</version>
  42. <classifier>jdk15</classifier>
  43. </dependency>
  44. <!-- jackson -->
  45. <dependency>
  46. <groupId>org.codehaus.jackson</groupId>
  47. <artifactId>jackson-mapper-asl</artifactId>
  48. <version>1.7.1</version>
  49. </dependency>
  50. <!-- spring -->
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-core</artifactId>
  54. <version>${org.springframework-version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-beans</artifactId>
  59. <version>${org.springframework-version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-context</artifactId>
  64. <version>${org.springframework-version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-context-support</artifactId>
  69. <version>${org.springframework-version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-tx</artifactId>
  74. <version>${org.springframework-version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-aspects</artifactId>
  79. <version>${org.springframework-version}</version>
  80. <type>jar</type>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-expression</artifactId>
  86. <version>${org.springframework-version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-oxm</artifactId>
  91. <version>${org.springframework-version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework</groupId>
  95. <artifactId>spring-web</artifactId>
  96. <version>${org.springframework-version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-webmvc</artifactId>
  101. <version>${org.springframework-version}</version>
  102. </dependency>
  103. <!-- spring-websocket -->
  104. <dependency>
  105. <groupId>javax.servlet</groupId>
  106. <artifactId>javax.servlet-api</artifactId>
  107. <version>3.1.0</version>
  108. <scope>provided</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.fasterxml.jackson.core</groupId>
  112. <artifactId>jackson-core</artifactId>
  113. <version>2.3.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.fasterxml.jackson.core</groupId>
  117. <artifactId>jackson-databind</artifactId>
  118. <version>2.3.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>spring-websocket</artifactId>
  123. <version>${org.springframework-version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework</groupId>
  127. <artifactId> spring-messaging</artifactId>
  128. <version>${org.springframework-version}</version>
  129. </dependency>
  130. <!-- logging -->
  131. <dependency>
  132. <groupId>commons-logging</groupId>
  133. <artifactId>commons-logging</artifactId>
  134. <version>1.1.1</version>
  135. </dependency>
  136. <!-- slf4j -->
  137. <dependency>
  138. <groupId>org.slf4j</groupId>
  139. <artifactId>slf4j-log4j12</artifactId>
  140. <version>1.7.2</version>
  141. </dependency>
  142. <!-- log4j -->
  143. <dependency>
  144. <groupId>log4j</groupId>
  145. <artifactId>log4j</artifactId>
  146. <version>1.2.14</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>javax.xml</groupId>
  150. <artifactId>jaxb-impl</artifactId>
  151. <version>2.1</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>javax.xml</groupId>
  155. <artifactId>jaxb-api</artifactId>
  156. <version>2.1</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>javax.servlet</groupId>
  160. <artifactId>jstl</artifactId>
  161. <version>1.2</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>taglibs</groupId>
  165. <artifactId>standard</artifactId>
  166. <version>1.1.2</version>
  167. </dependency>
  168. <!-- mybatis -->
  169. <dependency>
  170. <groupId>org.mybatis</groupId>
  171. <artifactId>mybatis</artifactId>
  172. <version>3.1.1</version>
  173. </dependency>
  174. <!-- mybatis-spring -->
  175. <dependency>
  176. <groupId>org.mybatis</groupId>
  177. <artifactId>mybatis-spring</artifactId>
  178. <version>1.1.1</version>
  179. </dependency>
  180. <!-- dbcp -->
  181. <dependency>
  182. <groupId>commons-dbcp</groupId>
  183. <artifactId>commons-dbcp</artifactId>
  184. <version>1.4</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>commons-pool</groupId>
  188. <artifactId>commons-pool</artifactId>
  189. <version>1.6</version>
  190. </dependency>
  191. <!-- postgresql -->
  192. <dependency>
  193. <groupId>postgresql</groupId>
  194. <artifactId>postgresql</artifactId>
  195. <version>9.1-901.jdbc4</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.directory.studio</groupId>
  199. <artifactId>org.apache.commons.lang</artifactId>
  200. <version>2.6</version>
  201. </dependency>
  202. <!-- <dependency> -->
  203. <!-- <groupId>org.apache.directory.studio</groupId> -->
  204. <!-- <artifactId>org.apache.commons.collections</artifactId> -->
  205. <!-- <version>3.2.1</version> -->
  206. <!-- </dependency> -->
  207. <!-- quartz -->
  208. <dependency>
  209. <groupId>org.quartz-scheduler</groupId>
  210. <artifactId>quartz</artifactId>
  211. <version>1.8.4</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.aspectj</groupId>
  215. <artifactId>aspectjweaver</artifactId>
  216. <version>1.6.11</version>
  217. <type>jar</type>
  218. <scope>compile</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>cglib</groupId>
  222. <artifactId>cglib</artifactId>
  223. <version>2.2</version>
  224. <type>jar</type>
  225. <scope>compile</scope>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.projectlombok</groupId>
  229. <artifactId>lombok</artifactId>
  230. <version>1.14.8</version>
  231. <scope>provided</scope>
  232. </dependency>
  233. <!-- dom4j -->
  234. <dependency>
  235. <groupId>dom4j</groupId>
  236. <artifactId>dom4j</artifactId>
  237. <version>1.6.1</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>jaxen</groupId>
  241. <artifactId>jaxen</artifactId>
  242. <version>1.1.6</version>
  243. </dependency>
  244. <!-- dom4j -->
  245. <!-- fileupload -->
  246. <dependency>
  247. <groupId>commons-io</groupId>
  248. <artifactId>commons-io</artifactId>
  249. <version>2.0.1</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>commons-fileupload</groupId>
  253. <artifactId>commons-fileupload</artifactId>
  254. <version>1.2.2</version>
  255. </dependency>
  256. <!-- fileupload -->
  257. <!-- echcache -->
  258. <dependency>
  259. <groupId>net.sf.ehcache</groupId>
  260. <artifactId>ehcache</artifactId>
  261. <version>2.10.0</version>
  262. </dependency>
  263. <!-- ehcache -->
  264. <!-- jpinyin jar -->
  265. <!-- <dependency> -->
  266. <!-- <groupId>com.github.stuxuhai</groupId> -->
  267. <!-- <artifactId>jpinyin</artifactId> -->
  268. <!-- <version>1.0</version> -->
  269. <!-- </dependency> -->
  270. <!-- jpinyin jar -->
  271. <!-- smartcn -->
  272. <!-- <dependency> -->
  273. <!-- <groupId>org.apache.lucene</groupId> -->
  274. <!-- <artifactId>lucene-analyzers-smartcn</artifactId> -->
  275. <!-- <version>5.2.1</version> -->
  276. <!-- </dependency> -->
  277. <!-- smartcn -->
  278. <!-- 微信公众号 -->
  279. <dependency>
  280. <groupId>me.chanjar</groupId>
  281. <artifactId>weixin-java-mp</artifactId>
  282. <version>1.1.2</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>javax.mail</groupId>
  286. <artifactId>mail</artifactId>
  287. <version>1.4.7</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>velocity</groupId>
  291. <artifactId>velocity</artifactId>
  292. <version>1.5</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.velocity</groupId>
  296. <artifactId>velocity-tools</artifactId>
  297. <version>2.0</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>com.alibaba</groupId>
  301. <artifactId>fastjson</artifactId>
  302. <version>1.2.4</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.apache.poi</groupId>
  306. <artifactId>poi</artifactId>
  307. <version>3.9</version>
  308. </dependency>
  309. </dependencies>
  310. <build>
  311. <directory>./build</directory>
  312. <resources>
  313. <resource>
  314. <directory>src/main/java</directory>
  315. <includes>
  316. <!-- <include>**/*.java</include> -->
  317. <include>**/*.xml</include>
  318. </includes>
  319. </resource>
  320. <resource>
  321. <directory>src/main/resources</directory>
  322. <includes>
  323. <include>**/*.xml</include>
  324. <include>**/*.properties</include>
  325. </includes>
  326. </resource>
  327. </resources>
  328. <plugins>
  329. <plugin>
  330. <groupId>org.apache.maven.plugins</groupId>
  331. <artifactId>maven-compiler-plugin</artifactId>
  332. <version>3.1</version>
  333. <configuration>
  334. <source>${java-version}</source>
  335. <target>${java-version}</target>
  336. </configuration>
  337. </plugin>
  338. <!-- <plugin> -->
  339. <!-- <artifactId>maven-war-plugin</artifactId> -->
  340. <!-- <version>2.3</version> -->
  341. <!-- <configuration> -->
  342. <!-- <warSourceDirectory>src/main/webapp</warSourceDirectory> -->
  343. <!-- <failOnMissingWebXml>false</failOnMissingWebXml> -->
  344. <!-- </configuration> -->
  345. <!-- </plugin> -->
  346. </plugins>
  347. </build>
  348. </project>