pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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_sync</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>war</packaging>
  7. <dependencies>
  8. <dependency>
  9. <groupId>com.tripto</groupId>
  10. <artifactId>hotels_rpc</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.slf4j</groupId>
  15. <artifactId>slf4j-api</artifactId>
  16. <version>1.7.6</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.slf4j</groupId>
  20. <artifactId>slf4j-log4j12</artifactId>
  21. <version>1.6.1</version>
  22. </dependency>
  23. <!-- jdbc driver -->
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>5.1.30</version>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <!-- 定时任务 -->
  31. <dependency>
  32. <groupId>org.quartz-scheduler</groupId>
  33. <artifactId>quartz</artifactId>
  34. <version>2.3.0</version>
  35. </dependency>
  36. <!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
  37. <dependency>
  38. <groupId>redis.clients</groupId>
  39. <artifactId>jedis</artifactId>
  40. <version>2.7.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.jetbrains</groupId>
  44. <artifactId>annotations</artifactId>
  45. <version>RELEASE</version>
  46. <scope>provided</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.commons</groupId>
  51. <artifactId>commons-pool2</artifactId>
  52. <version>2.0</version>
  53. </dependency>
  54. <!-- activemq 相关maven依赖 -->
  55. <dependency>
  56. <groupId>org.apache.activemq</groupId>
  57. <artifactId>activemq-client</artifactId>
  58. <version>5.14.5</version>
  59. </dependency>
  60. <!-- 6 dubbo zookeeper相关依赖start -->
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>dubbo</artifactId>
  64. <version>2.5.3</version>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>org.jboss.netty</groupId>
  72. <artifactId>netty</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.zookeeper</groupId>
  78. <artifactId>zookeeper</artifactId>
  79. <version>3.4.6</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.sgroschupf</groupId>
  83. <artifactId>zkclient</artifactId>
  84. <version>0.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring</artifactId>
  89. <version>2.5.6.SEC03</version>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-context</artifactId>
  95. <version>4.2.4.RELEASE</version>
  96. </dependency>
  97. <!-- dubbo zookeeper相关依赖end -->
  98. </dependencies>
  99. <repositories>
  100. <repository>
  101. <id>public</id>
  102. <name>public</name>
  103. <url>http://123.103.51.13:8088/nexus/content/groups/public/</url>
  104. <snapshots>
  105. <enabled>true</enabled>
  106. </snapshots>
  107. </repository>
  108. </repositories>
  109. <distributionManagement>
  110. <repository>
  111. <id>releases</id>
  112. <name>releases</name>
  113. <url>http://123.103.51.13:8088/nexus/content/repositories/releases/</url>
  114. </repository>
  115. <snapshotRepository>
  116. <id>snapshots</id>
  117. <name>snapshots</name>
  118. <url>http://123.103.51.13:8088/nexus/content/repositories/snapshots/</url>
  119. </snapshotRepository>
  120. </distributionManagement>
  121. </project>