pom.xml 4.0 KB

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