pom.xml 3.9 KB

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