pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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.sagacloud</groupId>
  5. <artifactId>data-platform-3</artifactId>
  6. <packaging>war</packaging>
  7. <version>3.1.0</version>
  8. <name>data-platform-3</name>
  9. <build>
  10. <finalName>data-platform-3</finalName>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>2.5.1</version>
  16. <inherited>true</inherited>
  17. <configuration>
  18. <source>1.8</source>
  19. <target>1.8</target>
  20. </configuration>
  21. </plugin>
  22. <plugin>
  23. <groupId>org.eclipse.jetty</groupId>
  24. <artifactId>jetty-maven-plugin</artifactId>
  25. <version>9.4.0.RC3</version>
  26. </plugin>
  27. </plugins>
  28. <resources>
  29. <resource>
  30. <directory>src/main/resources</directory>
  31. <excludes>
  32. <exclude>test/*</exclude>
  33. <exclude>prod/*</exclude>
  34. <exclude>dev/*</exclude>
  35. <exclude>preprod/*</exclude>
  36. </excludes>
  37. </resource>
  38. <resource>
  39. <directory>src/main/resources/${profile.name}</directory>
  40. </resource>
  41. </resources>
  42. </build>
  43. <repositories>
  44. <repository>
  45. <id>SagaCloud</id>
  46. <name>SagaCloud</name>
  47. <url>http://47.93.132.139:8081/nexus/content/groups/public/</url>
  48. <snapshots>
  49. <enabled>true</enabled>
  50. </snapshots>
  51. <releases>
  52. <enabled>true</enabled>
  53. </releases>
  54. </repository>
  55. <repository>
  56. <id>alimaven</id>
  57. <name>aliyun maven</name>
  58. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  59. </repository>
  60. <repository>
  61. <id>mvnrepository</id>
  62. <url>https://mvnrepository.com/</url>
  63. </repository>
  64. <!--
  65. <repository>
  66. <id>sonatype-nexus-snapshots</id>
  67. <name>Sonatype Nexus Snapshots</name>
  68. <url>http://oss.sonatype.org/content/repositories/snapshots</url>
  69. </repository>
  70. -->
  71. </repositories>
  72. <dependencyManagement>
  73. <dependencies>
  74. <dependency>
  75. <groupId>org.glassfish.jersey</groupId>
  76. <artifactId>jersey-bom</artifactId>
  77. <version>${jersey.version}</version>
  78. <type>pom</type>
  79. <scope>import</scope>
  80. </dependency>
  81. </dependencies>
  82. </dependencyManagement>
  83. <dependencies>
  84. <!-- <dependency>
  85. <groupId>jdk.tools</groupId>
  86. <artifactId>jdk.tools</artifactId>
  87. <version>1.8</version>
  88. <scope>system</scope>
  89. <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
  90. </dependency> -->
  91. <dependency>
  92. <groupId>com.fasterxml.uuid</groupId>
  93. <artifactId>java-uuid-generator</artifactId>
  94. <version>3.1.4</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.glassfish.jersey.containers</groupId>
  98. <artifactId>jersey-container-servlet-core</artifactId>
  99. <!-- use the following artifactId if you don't need servlet 2.x compatibility -->
  100. <!-- artifactId>jersey-container-servlet</artifactId -->
  101. <exclusions>
  102. <exclusion>
  103. <groupId>com.google.guava</groupId>
  104. <artifactId>guava</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <!-- uncomment this to get JSON support
  109. <dependency>
  110. <groupId>org.glassfish.jersey.media</groupId>
  111. <artifactId>jersey-media-moxy</artifactId>
  112. </dependency>
  113. -->
  114. <!--<dependency>-->
  115. <!--<groupId>com.sagacloud</groupId>-->
  116. <!--<artifactId>zillion-util</artifactId>-->
  117. <!--<version>1.8.2</version>-->
  118. <!--</dependency>-->
  119. <dependency>
  120. <groupId>com.sagacloud</groupId>
  121. <artifactId>zillion-util</artifactId>
  122. <version>2.2.3</version>
  123. <type>jar</type>
  124. <exclusions>
  125. <exclusion>
  126. <groupId>com.google.guava</groupId>
  127. <artifactId>guava</artifactId>
  128. </exclusion>
  129. <exclusion>
  130. <groupId>com.sun.jersey</groupId>
  131. <artifactId>jersey-server</artifactId>
  132. </exclusion>
  133. <exclusion>
  134. <groupId>com.sun.jersey</groupId>
  135. <artifactId>jersey-core</artifactId>
  136. </exclusion>
  137. <exclusion>
  138. <groupId>org.apache.httpcomponents</groupId>
  139. <artifactId>httpclient</artifactId>
  140. </exclusion>
  141. <exclusion>
  142. <groupId>org.apache.httpcomponents</groupId>
  143. <artifactId>httpcore</artifactId>
  144. </exclusion>
  145. </exclusions>
  146. </dependency>
  147. <dependency>
  148. <groupId>mysql</groupId>
  149. <artifactId>mysql-connector-java</artifactId>
  150. <version>8.0.15</version>
  151. <exclusions>
  152. <exclusion>
  153. <artifactId>protobuf-java</artifactId>
  154. <groupId>com.google.protobuf</groupId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.mchange</groupId>
  160. <artifactId>c3p0</artifactId>
  161. <version>0.9.5.2</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.commons</groupId>
  165. <artifactId>commons-dbcp2</artifactId>
  166. <version>2.5.0</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.sagacloud</groupId>
  170. <artifactId>json-lib-zillion</artifactId>
  171. <version>1.0</version>
  172. <type>jar</type>
  173. <exclusions>
  174. <exclusion>
  175. <groupId>com.google.guava</groupId>
  176. <artifactId>guava</artifactId>
  177. </exclusion>
  178. </exclusions>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.hbase</groupId>
  182. <artifactId>hbase-server</artifactId>
  183. <version>1.3.0</version>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>com.sun.jersey</groupId>
  187. <artifactId>jersey-server</artifactId>
  188. </exclusion>
  189. <exclusion>
  190. <groupId>com.sun.jersey</groupId>
  191. <artifactId>jersey-core</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <groupId>com.sun.jersey</groupId>
  195. <artifactId>jersey-json</artifactId>
  196. </exclusion>
  197. <exclusion>
  198. <groupId>com.google.guava</groupId>
  199. <artifactId>guava</artifactId>
  200. </exclusion>
  201. <exclusion>
  202. <groupId>org.apache.httpcomponents</groupId>
  203. <artifactId>httpclient</artifactId>
  204. </exclusion>
  205. <exclusion>
  206. <groupId>org.apache.httpcomponents</groupId>
  207. <artifactId>httpcore</artifactId>
  208. </exclusion>
  209. </exclusions>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.hbase</groupId>
  213. <artifactId>hbase-client</artifactId>
  214. <version>1.3.0</version>
  215. <exclusions>
  216. <exclusion>
  217. <groupId>com.google.guava</groupId>
  218. <artifactId>guava</artifactId>
  219. </exclusion>
  220. </exclusions>
  221. </dependency>
  222. <dependency>
  223. <groupId>com.doctusoft</groupId>
  224. <artifactId>json-schema-java7</artifactId>
  225. <version>1.4.1</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.github.rjeschke</groupId>
  229. <artifactId>txtmark</artifactId>
  230. <version>0.13</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>commons-io</groupId>
  234. <artifactId>commons-io</artifactId>
  235. <version>2.4</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>com.aliyun.oss</groupId>
  239. <artifactId>aliyun-sdk-oss</artifactId>
  240. <version>2.7.0</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.apache.activemq</groupId>
  244. <artifactId>activemq-client</artifactId>
  245. <version>5.15.0</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.apache.activemq</groupId>
  249. <artifactId>activemq-core</artifactId>
  250. <version>5.7.0</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.poi</groupId>
  254. <artifactId>poi</artifactId>
  255. <version>3.15</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.poi</groupId>
  259. <artifactId>poi-ooxml</artifactId>
  260. <version>3.15</version>
  261. </dependency>
  262. <!-- https://mvnrepository.com/artifact/junit/junit -->
  263. <dependency>
  264. <groupId>junit</groupId>
  265. <artifactId>junit</artifactId>
  266. <version>4.12</version>
  267. <scope>test</scope>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.opengamma.strata</groupId>
  271. <artifactId>strata-measure</artifactId>
  272. <version>1.4.0</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>com.sagacloud</groupId>
  276. <artifactId>expression-parse</artifactId>
  277. <version>1.0</version>
  278. </dependency>
  279. <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlets -->
  280. <dependency>
  281. <groupId>org.eclipse.jetty</groupId>
  282. <artifactId>jetty-servlets</artifactId>
  283. <version>9.4.8.v20171121</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.ehcache</groupId>
  287. <artifactId>ehcache</artifactId>
  288. <version>3.5.2</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>de.jkeylockmanager</groupId>
  292. <artifactId>jkeylockmanager</artifactId>
  293. <version>2.1.0</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>com.alibaba</groupId>
  297. <artifactId>fastjson</artifactId>
  298. <version>1.2.58</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>com.google.zxing</groupId>
  302. <artifactId>core</artifactId>
  303. <version>3.3.3</version>
  304. </dependency>
  305. <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
  306. <dependency>
  307. <groupId>com.google.zxing</groupId>
  308. <artifactId>javase</artifactId>
  309. <version>3.3.3</version>
  310. </dependency>
  311. <!-- https://mvnrepository.com/artifact/com.vividsolutions/jts -->
  312. <dependency>
  313. <groupId>com.vividsolutions</groupId>
  314. <artifactId>jts</artifactId>
  315. <version>1.13</version>
  316. </dependency>
  317. <!-- https://mvnrepository.com/artifact/com.rabbitmq/amqp-client -->
  318. <dependency>
  319. <groupId>com.rabbitmq</groupId>
  320. <artifactId>amqp-client</artifactId>
  321. <version>5.7.3</version>
  322. </dependency>
  323. </dependencies>
  324. <properties>
  325. <jersey.version>2.25.1</jersey.version>
  326. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  327. </properties>
  328. <profiles>
  329. <profile>
  330. <id>prod</id>
  331. <properties>
  332. <profile.name>prod</profile.name>
  333. </properties>
  334. </profile>
  335. <profile>
  336. <id>preprod</id>
  337. <properties>
  338. <profile.name>preprod</profile.name>
  339. </properties>
  340. </profile>
  341. <profile>
  342. <id>test</id>
  343. <properties>
  344. <profile.name>test</profile.name>
  345. </properties>
  346. </profile>
  347. <profile>
  348. <id>dev</id>
  349. <properties>
  350. <profile.name>dev</profile.name>
  351. </properties>
  352. <activation>
  353. <activeByDefault>true</activeByDefault>
  354. </activation>
  355. </profile>
  356. </profiles>
  357. </project>