pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.sagacloud</groupId>
  6. <artifactId>repairInfoTable</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>repairInfoTable</name>
  9. <!-- FIXME change it to the project's website -->
  10. <url>http://www.example.com</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.7</maven.compiler.source>
  14. <maven.compiler.target>1.7</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sagacloud</groupId>
  25. <artifactId>zillion-util</artifactId>
  26. <version>1.8.2</version>
  27. <type>jar</type>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>com.google.guava</groupId>
  31. <artifactId>guava</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <groupId>com.sun.jersey</groupId>
  35. <artifactId>jersey-server</artifactId>
  36. </exclusion>
  37. <exclusion>
  38. <groupId>com.sun.jersey</groupId>
  39. <artifactId>jersey-core</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>org.apache.httpcomponents</groupId>
  43. <artifactId>httpclient</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpcore</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.sagacloud</groupId>
  53. <artifactId>json-lib-zillion</artifactId>
  54. <version>1.0</version>
  55. <type>jar</type>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>com.google.guava</groupId>
  59. <artifactId>guava</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.hbase</groupId>
  65. <artifactId>hbase-server</artifactId>
  66. <version>1.3.0</version>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>com.sun.jersey</groupId>
  70. <artifactId>jersey-server</artifactId>
  71. </exclusion>
  72. <exclusion>
  73. <groupId>com.sun.jersey</groupId>
  74. <artifactId>jersey-core</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>com.sun.jersey</groupId>
  78. <artifactId>jersey-json</artifactId>
  79. </exclusion>
  80. <exclusion>
  81. <groupId>com.google.guava</groupId>
  82. <artifactId>guava</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpclient</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>org.apache.httpcomponents</groupId>
  90. <artifactId>httpcore</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.hbase</groupId>
  96. <artifactId>hbase-client</artifactId>
  97. <version>1.3.0</version>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>com.google.guava</groupId>
  101. <artifactId>guava</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  108. <plugins>
  109. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  110. <plugin>
  111. <artifactId>maven-clean-plugin</artifactId>
  112. <version>3.1.0</version>
  113. </plugin>
  114. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  115. <plugin>
  116. <artifactId>maven-resources-plugin</artifactId>
  117. <version>3.0.2</version>
  118. </plugin>
  119. <plugin>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <version>3.8.0</version>
  122. </plugin>
  123. <plugin>
  124. <artifactId>maven-surefire-plugin</artifactId>
  125. <version>2.22.1</version>
  126. </plugin>
  127. <plugin>
  128. <artifactId>maven-jar-plugin</artifactId>
  129. <version>3.0.2</version>
  130. </plugin>
  131. <plugin>
  132. <artifactId>maven-install-plugin</artifactId>
  133. <version>2.5.2</version>
  134. </plugin>
  135. <plugin>
  136. <artifactId>maven-deploy-plugin</artifactId>
  137. <version>2.8.2</version>
  138. </plugin>
  139. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  140. <plugin>
  141. <artifactId>maven-site-plugin</artifactId>
  142. <version>3.7.1</version>
  143. </plugin>
  144. <plugin>
  145. <artifactId>maven-project-info-reports-plugin</artifactId>
  146. <version>3.0.0</version>
  147. </plugin>
  148. </plugins>
  149. </pluginManagement>
  150. </build>
  151. </project>