pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.tipdm</groupId>
  6. <artifactId>tipdmframework-root</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <artifactId>tipdm-dmserver</artifactId>
  10. <packaging>war</packaging>
  11. <url>http://maven.apache.org</url>
  12. <properties>
  13. <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <spring.version>4.3.4.RELEASE</spring.version>
  18. <shiro.version>1.2.3</shiro.version>
  19. <slf4j.version>1.7.25</slf4j.version>
  20. <logback.version>1.2.3</logback.version>
  21. <commons-lang3.version>3.6</commons-lang3.version>
  22. <commons-cli-version>1.2</commons-cli-version>
  23. <commons-pool2.version>2.4.2</commons-pool2.version>
  24. <jsonpath.version>2.2.0</jsonpath.version>
  25. <tomcat.version>8.5.20</tomcat.version>
  26. <framework.common.version>1.0</framework.common.version>
  27. <framework.service.version>1.0</framework.service.version>
  28. <framework.persist.version>1.0</framework.persist.version>
  29. <framework.model.version>1.0</framework.model.version>
  30. <jackson.version>2.6.5</jackson.version>
  31. <jgrapht.version>1.3.0</jgrapht.version>
  32. <motan.version>1.1.4</motan.version>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>com.tipdm</groupId>
  37. <artifactId>framework-common</artifactId>
  38. <version>${framework.common.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.tipdm</groupId>
  42. <artifactId>framework-model</artifactId>
  43. <version>${framework.model.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.tipdm</groupId>
  47. <artifactId>framework-persist</artifactId>
  48. <version>${framework.persist.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.tipdm</groupId>
  52. <artifactId>framework-service</artifactId>
  53. <version>${framework.service.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>ch.qos.logback</groupId>
  57. <artifactId>logback-classic</artifactId>
  58. <version>${logback.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.commons</groupId>
  62. <artifactId>commons-pool2</artifactId>
  63. <version>${commons-pool2.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.quartz-scheduler</groupId>
  67. <artifactId>quartz</artifactId>
  68. <version>${quartz.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-collections</groupId>
  72. <artifactId>commons-collections</artifactId>
  73. <version>3.2.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>${commons-lang3.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-beanutils</groupId>
  82. <artifactId>commons-beanutils</artifactId>
  83. <version>1.9.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>javax.servlet</groupId>
  87. <artifactId>javax.servlet-api</artifactId>
  88. <version>3.1.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.servlet.jsp</groupId>
  92. <artifactId>jsp-api</artifactId>
  93. <version>2.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>javax.servlet</groupId>
  97. <artifactId>jstl</artifactId>
  98. <version>1.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.shiro</groupId>
  102. <artifactId>shiro-core</artifactId>
  103. <version>${shiro.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.shiro</groupId>
  107. <artifactId>shiro-ehcache</artifactId>
  108. <version>${shiro.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.shiro</groupId>
  112. <artifactId>shiro-web</artifactId>
  113. <version>${shiro.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.shiro</groupId>
  117. <artifactId>shiro-quartz</artifactId>
  118. <version>${shiro.version}</version>
  119. <exclusions>
  120. <exclusion>
  121. <groupId>org.quartz-scheduler</groupId>
  122. <artifactId>quartz</artifactId>
  123. </exclusion>
  124. <exclusion>
  125. <artifactId>quartz</artifactId>
  126. <groupId>org.opensymphony.quartz</groupId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.shiro</groupId>
  132. <artifactId>shiro-spring</artifactId>
  133. <version>${shiro.version}</version>
  134. </dependency>
  135. <!-- aspectj相关jar包 -->
  136. <dependency>
  137. <groupId>org.aspectj</groupId>
  138. <artifactId>aspectjrt</artifactId>
  139. <version>1.7.4</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.aspectj</groupId>
  143. <artifactId>aspectjweaver</artifactId>
  144. <version>1.7.4</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework</groupId>
  148. <artifactId>spring-context-support</artifactId>
  149. <version>${spring.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework</groupId>
  153. <artifactId>spring-jdbc</artifactId>
  154. <version>${spring.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.springframework</groupId>
  158. <artifactId>spring-tx</artifactId>
  159. <version>${spring.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.springframework</groupId>
  163. <artifactId>spring-webmvc</artifactId>
  164. <version>${spring.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>xalan</groupId>
  168. <artifactId>xalan</artifactId>
  169. <version>2.7.2</version>
  170. </dependency>
  171. <!--jackson -->
  172. <dependency>
  173. <groupId>com.fasterxml.jackson.core</groupId>
  174. <artifactId>jackson-databind</artifactId>
  175. <version>${jackson.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.google.guava</groupId>
  179. <artifactId>guava</artifactId>
  180. <version>${guava.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>antlr</groupId>
  184. <artifactId>antlr</artifactId>
  185. <version>2.7.7</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>commons-fileupload</groupId>
  189. <artifactId>commons-fileupload</artifactId>
  190. <version>1.3.1</version>
  191. </dependency>
  192. <!-- jsonpath -->
  193. <dependency>
  194. <groupId>com.jayway.jsonpath</groupId>
  195. <artifactId>json-path</artifactId>
  196. <version>${jsonpath.version}</version>
  197. </dependency>
  198. <!-- ssh2 linux -->
  199. <dependency>
  200. <groupId>com.jcraft</groupId>
  201. <artifactId>jsch</artifactId>
  202. <version>0.1.54</version>
  203. </dependency>
  204. <!-- JMustache -->
  205. <dependency>
  206. <groupId>com.samskivert</groupId>
  207. <artifactId>jmustache</artifactId>
  208. <version>1.13</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.github.drinkjava2</groupId>
  212. <artifactId>jdialects</artifactId>
  213. <version>1.0.5</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.geronimo.components</groupId>
  217. <artifactId>geronimo-jaspi</artifactId>
  218. <version>2.0.0</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.corundumstudio.socketio</groupId>
  222. <artifactId>netty-socketio</artifactId>
  223. <version>1.7.13</version>
  224. <exclusions>
  225. <exclusion>
  226. <artifactId>netty-resolver</artifactId>
  227. <groupId>io.netty</groupId>
  228. </exclusion>
  229. <exclusion>
  230. <artifactId>netty-buffer</artifactId>
  231. <groupId>io.netty</groupId>
  232. </exclusion>
  233. <exclusion>
  234. <artifactId>netty-transport</artifactId>
  235. <groupId>io.netty</groupId>
  236. </exclusion>
  237. <exclusion>
  238. <artifactId>netty-handler</artifactId>
  239. <groupId>io.netty</groupId>
  240. </exclusion>
  241. <exclusion>
  242. <artifactId>netty-codec</artifactId>
  243. <groupId>io.netty</groupId>
  244. </exclusion>
  245. <exclusion>
  246. <artifactId>netty-common</artifactId>
  247. <groupId>io.netty</groupId>
  248. </exclusion>
  249. </exclusions>
  250. </dependency>
  251. <dependency>
  252. <groupId>io.socket</groupId>
  253. <artifactId>socket.io-client</artifactId>
  254. <version>1.0.0</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.redisson</groupId>
  258. <artifactId>redisson</artifactId>
  259. <version>3.5.7</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>gopro</groupId>
  263. <artifactId>feature-stats</artifactId>
  264. <version>1.0</version>
  265. <scope>system</scope>
  266. <systemPath>${project.basedir}/lib/feature-stats-1.0.jar</systemPath>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.typesafe</groupId>
  270. <artifactId>config</artifactId>
  271. <version>1.2.1</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>edu.cornell.med.icb.io</groupId>
  275. <artifactId>icb-utils</artifactId>
  276. <version>1.0.0</version>
  277. <scope>system</scope>
  278. <systemPath>${project.basedir}/lib/icb-utils.jar</systemPath>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.jgrapht</groupId>
  282. <artifactId>jgrapht-core</artifactId>
  283. <version>${jgrapht.version}</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>com.github.dexecutor</groupId>
  287. <artifactId>dexecutor-core</artifactId>
  288. <version>2.1.0</version>
  289. </dependency>
  290. <!-- RPC -->
  291. <dependency>
  292. <groupId>com.weibo</groupId>
  293. <artifactId>motan-core</artifactId>
  294. <version>${motan.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>com.weibo</groupId>
  298. <artifactId>motan-transport-netty</artifactId>
  299. <version>${motan.version}</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>com.weibo</groupId>
  303. <artifactId>motan-springsupport</artifactId>
  304. <version>${motan.version}</version>
  305. </dependency>
  306. <!-- RPC end -->
  307. <dependency>
  308. <groupId>org.jooq</groupId>
  309. <artifactId>jooq</artifactId>
  310. <version>3.11.9</version>
  311. </dependency>
  312. <!-- DataX -->
  313. <dependency>
  314. <groupId>com.alibaba.datax</groupId>
  315. <artifactId>datax-core</artifactId>
  316. <version>0.0.1-SNAPSHOT</version>
  317. <scope>system</scope>
  318. <systemPath>${project.basedir}/lib/datax-core-0.0.1-SNAPSHOT.jar</systemPath>
  319. </dependency>
  320. <dependency>
  321. <groupId>com.alibaba.datax</groupId>
  322. <artifactId>datax-common</artifactId>
  323. <version>0.0.1-SNAPSHOT</version>
  324. <scope>system</scope>
  325. <systemPath>${project.basedir}/lib/datax-common-0.0.1-SNAPSHOT.jar</systemPath>
  326. </dependency>
  327. <dependency>
  328. <groupId>commons-cli</groupId>
  329. <artifactId>commons-cli</artifactId>
  330. <version>${commons-cli-version}</version>
  331. </dependency>
  332. <dependency>
  333. <groupId>org.apache.httpcomponents</groupId>
  334. <artifactId>httpclient</artifactId>
  335. <version>4.4</version>
  336. </dependency>
  337. <dependency>
  338. <groupId>org.apache.httpcomponents</groupId>
  339. <artifactId>fluent-hc</artifactId>
  340. <version>4.4</version>
  341. </dependency>
  342. <!-- DataX end -->
  343. </dependencies>
  344. <build>
  345. <finalName>${artifactId}-v${version}</finalName>
  346. <resources>
  347. <resource>
  348. <directory>src/main/resources</directory>
  349. <includes>
  350. <include>**/*.*</include>
  351. </includes>
  352. </resource>
  353. </resources>
  354. <plugins>
  355. <plugin>
  356. <groupId>org.apache.maven.plugins</groupId>
  357. <artifactId>maven-compiler-plugin</artifactId>
  358. <configuration>
  359. <source>1.8</source>
  360. <target>1.8</target>
  361. <skip>true</skip>
  362. </configuration>
  363. </plugin>
  364. <plugin>
  365. <groupId>org.apache.maven.plugins</groupId>
  366. <artifactId>maven-war-plugin</artifactId>
  367. <version>2.6</version>
  368. <configuration>
  369. <warName>${project.artifactId}-v${project.version}-${maven.build.timestamp}</warName>
  370. <webResources>
  371. <resource>
  372. <directory>lib</directory>
  373. <targetPath>WEB-INF/lib</targetPath>
  374. <includes>
  375. <include>**/*.*</include>
  376. </includes>
  377. </resource>
  378. <resource>
  379. <directory>src/main/resources</directory>
  380. <targetPath>WEB-INF/classes</targetPath>
  381. <filtering>true</filtering>
  382. </resource>
  383. </webResources>
  384. </configuration>
  385. </plugin>
  386. <!--servlet容器 jetty插件-->
  387. <plugin>
  388. <groupId>org.eclipse.jetty</groupId>
  389. <artifactId>jetty-maven-plugin</artifactId>
  390. <version>9.3.10.v20160621</version>
  391. </plugin>
  392. </plugins>
  393. </build>
  394. </project>