pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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>org.elasticsearch</groupId>
  4. <artifactId>elasticsearch-query</artifactId>
  5. <version>2.4.4</version>
  6. <packaging>pom</packaging>
  7. <name>${project.artifactId}</name>
  8. <modules>
  9. <module>elasticsearch-query-core</module>
  10. <module>elasticsearch-query-jdbc</module>
  11. <module>elasticsearch-query-spring</module>
  12. </modules>
  13. <properties>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. <elasticsearch.version>2.4.4</elasticsearch.version>
  16. <druid.version>1.0.24</druid.version>
  17. <guava.version>18.0</guava.version>
  18. <gson.version>2.3.1</gson.version>
  19. <spring.version>3.0.5.RELEASE</spring.version>
  20. <joda.time.version>2.3</joda.time.version>
  21. <ibatis.version>2.3.4.726</ibatis.version>
  22. <junit.version>4.12</junit.version>
  23. <slf4j.version>1.6.1</slf4j.version>
  24. <common.lang.version>2.6</common.lang.version>
  25. <common.colletion.version>3.2.1</common.colletion.version>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.apache.ibatis</groupId>
  31. <artifactId>ibatis-sqlmap</artifactId>
  32. <version>${ibatis.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.elasticsearch</groupId>
  36. <artifactId>elasticsearch</artifactId>
  37. <version>${elasticsearch.version}</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid</artifactId>
  43. <version>${druid.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.guava</groupId>
  47. <artifactId>guava</artifactId>
  48. <version>${guava.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.google.code.gson</groupId>
  52. <artifactId>gson</artifactId>
  53. <version>${gson.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>joda-time</groupId>
  57. <artifactId>joda-time</artifactId>
  58. <version>${joda.time.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-collections</groupId>
  62. <artifactId>commons-collections</artifactId>
  63. <version>${common.colletion.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-lang</groupId>
  67. <artifactId>commons-lang</artifactId>
  68. <version>${common.lang.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-log4j12</artifactId>
  73. <version>${slf4j.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>junit</groupId>
  77. <artifactId>junit</artifactId>
  78. <version>${junit.version}</version>
  79. <scope>test</scope>
  80. </dependency>
  81. </dependencies>
  82. </dependencyManagement>
  83. <build>
  84. <pluginManagement>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>2.3.2</version>
  90. <configuration>
  91. <encoding>utf-8</encoding>
  92. <source>1.8</source>
  93. <target>1.8</target>
  94. </configuration>
  95. </plugin>
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-surefire-plugin</artifactId>
  99. <version>2.11</version>
  100. <configuration>
  101. <includes>
  102. <include>**/*Test.java</include>
  103. <include>**/Test*.java</include>
  104. </includes>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-source-plugin</artifactId>
  110. <version>2.1.2</version>
  111. <executions>
  112. <execution>
  113. <id>attach-sources</id>
  114. <goals>
  115. <goal>jar</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. </plugins>
  121. </pluginManagement>
  122. </build>
  123. <licenses>
  124. <license>
  125. <name>The Apache Software License, Version 2.0</name>
  126. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  127. <distribution>repo</distribution>
  128. </license>
  129. </licenses>
  130. <repositories>
  131. <repository>
  132. <id>uk.maven.org</id>
  133. <name>UK MAVEN</name>
  134. <releases>
  135. <enabled>true</enabled>
  136. </releases>
  137. <snapshots>
  138. <enabled>true</enabled>
  139. </snapshots>
  140. <url>http://uk.maven.org/maven2/</url>
  141. </repository>
  142. </repositories>
  143. <mailingLists>
  144. <mailingList>
  145. <name>chennan</name>
  146. <post>465360798@qq.com</post>
  147. </mailingList>
  148. </mailingLists>
  149. <developers>
  150. <developer>
  151. <id>chennan</id>
  152. <name>chennan</name>
  153. <email>465360798@qq.com</email>
  154. <timezone>8</timezone>
  155. </developer>
  156. </developers>
  157. </project>