pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.lts</groupId>
  7. <artifactId>lts-parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.6.2</version>
  10. <modules>
  11. <module>lts-core</module>
  12. <module>lts-jobtracker</module>
  13. <module>lts-tasktracker</module>
  14. <module>lts-jobclient</module>
  15. <module>lts-queue</module>
  16. <module>lts-logger</module>
  17. <module>lts-example</module>
  18. <module>lts-admin</module>
  19. <module>lts-spring</module>
  20. <module>lts-startup</module>
  21. <module>lts</module>
  22. </modules>
  23. <properties>
  24. <jedis.version>2.7.3</jedis.version>
  25. <fastjson.version>1.1.41</fastjson.version>
  26. <leveldbjni.version>1.8</leveldbjni.version>
  27. <curator.version>1.1.10</curator.version>
  28. <zkclient.version>0.1</zkclient.version>
  29. <zk.version>3.4.5</zk.version>
  30. <javassist.version>3.19.0-GA</javassist.version>
  31. <mongo.driver.version>3.0.2</mongo.driver.version>
  32. <morphia.version>1.0.0-rc1</morphia.version>
  33. <junit.version>4.11</junit.version>
  34. <netty.version>4.0.13.Final</netty.version>
  35. <jcl_version>1.1</jcl_version>
  36. <slf4j.version>1.7.5</slf4j.version>
  37. <log4j.version>1.2.16</log4j.version>
  38. <dbutils.version>1.6</dbutils.version>
  39. <druid.version>1.0.14</druid.version>
  40. <mysql.version>5.1.26</mysql.version>
  41. <sleepycat.version>5.0.73</sleepycat.version>
  42. <rocksdbjni.version>3.10.1</rocksdbjni.version>
  43. <reflectasm.version>1.11.0</reflectasm.version>
  44. <h2.version>1.4.189</h2.version>
  45. <springframework.version>4.1.6.RELEASE</springframework.version>
  46. <mina.version>2.0.9</mina.version>
  47. <hessian.version>4.0.37</hessian.version>
  48. </properties>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>io.netty</groupId>
  53. <artifactId>netty-all</artifactId>
  54. <version>${netty.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <version>${junit.version}</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.zookeeper</groupId>
  64. <artifactId>zookeeper</artifactId>
  65. <version>${zk.version}</version>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>org.jboss.netty</groupId>
  69. <artifactId>netty</artifactId>
  70. </exclusion>
  71. <exclusion>
  72. <groupId>log4j</groupId>
  73. <artifactId>log4j</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.sgroschupf</groupId>
  79. <artifactId>zkclient</artifactId>
  80. <version>${zkclient.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.netflix.curator</groupId>
  84. <artifactId>curator-framework</artifactId>
  85. <version>${curator.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.mongodb.morphia</groupId>
  89. <artifactId>morphia</artifactId>
  90. <version>${morphia.version}</version>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.mongodb</groupId>
  94. <artifactId>mongo-java-driver</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>com.thoughtworks.proxytoys</groupId>
  98. <artifactId>proxytoys</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>cglib</groupId>
  102. <artifactId>cglib-nodep</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.mongodb</groupId>
  108. <artifactId>mongo-java-driver</artifactId>
  109. <version>${mongo.driver.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-dbutils</groupId>
  113. <artifactId>commons-dbutils</artifactId>
  114. <version>${dbutils.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>druid</artifactId>
  119. <version>${druid.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>mysql</groupId>
  123. <artifactId>mysql-connector-java</artifactId>
  124. <version>${mysql.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>redis.clients</groupId>
  128. <artifactId>jedis</artifactId>
  129. <version>${jedis.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.fusesource.leveldbjni</groupId>
  133. <artifactId>leveldbjni-all</artifactId>
  134. <version>${leveldbjni.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.alibaba</groupId>
  138. <artifactId>fastjson</artifactId>
  139. <version>${fastjson.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.slf4j</groupId>
  143. <artifactId>slf4j-api</artifactId>
  144. <version>${slf4j.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>log4j</groupId>
  148. <artifactId>log4j</artifactId>
  149. <version>${log4j.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.slf4j</groupId>
  153. <artifactId>slf4j-log4j12</artifactId>
  154. <version>${slf4j.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>commons-logging</groupId>
  158. <artifactId>commons-logging-api</artifactId>
  159. <version>${jcl_version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.javassist</groupId>
  163. <artifactId>javassist</artifactId>
  164. <version>${javassist.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.sleepycat</groupId>
  168. <artifactId>je</artifactId>
  169. <version>${sleepycat.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.rocksdb</groupId>
  173. <artifactId>rocksdbjni</artifactId>
  174. <version>${rocksdbjni.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.esotericsoftware</groupId>
  178. <artifactId>reflectasm</artifactId>
  179. <version>${reflectasm.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.h2database</groupId>
  183. <artifactId>h2</artifactId>
  184. <version>${h2.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.apache.mina</groupId>
  188. <artifactId>mina-core</artifactId>
  189. <version>${mina.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.caucho</groupId>
  193. <artifactId>hessian</artifactId>
  194. <version>${hessian.version}</version>
  195. </dependency>
  196. </dependencies>
  197. </dependencyManagement>
  198. <build>
  199. <plugins>
  200. <plugin>
  201. <artifactId>maven-compiler-plugin</artifactId>
  202. <configuration>
  203. <source>1.6</source>
  204. <target>1.6</target>
  205. <encoding>UTF-8</encoding>
  206. </configuration>
  207. </plugin>
  208. <plugin>
  209. <artifactId>maven-source-plugin</artifactId>
  210. <version>2.2.1</version>
  211. <configuration>
  212. <attach>true</attach>
  213. </configuration>
  214. <executions>
  215. <execution>
  216. <phase>compile</phase>
  217. <goals>
  218. <goal>jar</goal>
  219. </goals>
  220. </execution>
  221. </executions>
  222. </plugin>
  223. </plugins>
  224. </build>
  225. </project>