pom.xml 4.8 KB

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