pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.tripto</groupId>
  4. <artifactId>hotels_api</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>war</packaging>
  7. <dependencies>
  8. <dependency>
  9. <groupId>log4j</groupId>
  10. <artifactId>log4j</artifactId>
  11. <version>1.2.17</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>com.alibaba</groupId>
  15. <artifactId>fastjson</artifactId>
  16. <version>1.2.47</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.json</groupId>
  20. <artifactId>json</artifactId>
  21. <version>20160810</version>
  22. </dependency>
  23. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  24. <dependency>
  25. <groupId>dom4j</groupId>
  26. <artifactId>dom4j</artifactId>
  27. <version>1.6.1</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/jaxen/jaxen -->
  30. <dependency>
  31. <groupId>jaxen</groupId>
  32. <artifactId>jaxen</artifactId>
  33. <version>1.1.6</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jsoup</groupId>
  37. <artifactId>jsoup</artifactId>
  38. <version>1.8.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.tripto</groupId>
  42. <artifactId>hotels_rpc</artifactId>
  43. <version>0.0.1-SNAPSHOT</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.slf4j</groupId>
  47. <artifactId>slf4j-api</artifactId>
  48. <version>1.7.6</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-log4j12</artifactId>
  53. <version>1.6.1</version>
  54. </dependency>
  55. <!-- 定时任务 -->
  56. <dependency>
  57. <groupId>org.quartz-scheduler</groupId>
  58. <artifactId>quartz</artifactId>
  59. <version>2.3.0</version>
  60. </dependency>
  61. <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
  62. <dependency>
  63. <groupId>redis.clients</groupId>
  64. <artifactId>jedis</artifactId>
  65. <version>2.7.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.jetbrains</groupId>
  69. <artifactId>annotations</artifactId>
  70. <version>RELEASE</version>
  71. <scope>provided</scope>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-pool2</artifactId>
  77. <version>2.0</version>
  78. </dependency>
  79. <!-- activemq 相关maven依赖 -->
  80. <dependency>
  81. <groupId>org.apache.activemq</groupId>
  82. <artifactId>activemq-client</artifactId>
  83. <version>5.14.5</version>
  84. </dependency>
  85. <!-- 6 dubbo zookeeper相关依赖start -->
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>dubbo</artifactId>
  89. <version>2.5.3</version>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>org.jboss.netty</groupId>
  97. <artifactId>netty</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.zookeeper</groupId>
  103. <artifactId>zookeeper</artifactId>
  104. <version>3.4.6</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.github.sgroschupf</groupId>
  108. <artifactId>zkclient</artifactId>
  109. <version>0.1</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework</groupId>
  113. <artifactId>spring</artifactId>
  114. <version>2.5.6.SEC03</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-context</artifactId>
  120. <version>4.2.4.RELEASE</version>
  121. </dependency>
  122. <!-- dubbo zookeeper相关依赖end -->
  123. </dependencies>
  124. <repositories>
  125. <repository>
  126. <id>public</id>
  127. <name>public</name>
  128. <url>http://123.103.51.13:8088/nexus/content/groups/public/</url>
  129. <snapshots>
  130. <enabled>true</enabled>
  131. </snapshots>
  132. </repository>
  133. </repositories>
  134. <distributionManagement>
  135. <repository>
  136. <id>releases</id>
  137. <name>releases</name>
  138. <url>http://123.103.51.13:8088/nexus/content/repositories/releases/</url>
  139. </repository>
  140. <snapshotRepository>
  141. <id>snapshots</id>
  142. <name>snapshots</name>
  143. <url>http://123.103.51.13:8088/nexus/content/repositories/snapshots/</url>
  144. </snapshotRepository>
  145. </distributionManagement>
  146. </project>