java-control-plane-0.1.27.pom 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.envoyproxy.controlplane</groupId>
  5. <artifactId>java-control-plane</artifactId>
  6. <version>0.1.27</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>api</module>
  10. <module>cache</module>
  11. <module>server</module>
  12. <module>test</module>
  13. </modules>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <!-- Dependency Versions -->
  21. <annotation-api.version>1.3.2</annotation-api.version>
  22. <assertj.version>3.12.2</assertj.version>
  23. <auto-value.version>1.6.3</auto-value.version>
  24. <awaitility.version>3.1.6</awaitility.version>
  25. <checkstyle.version>8.18</checkstyle.version>
  26. <grpc.version>1.22.1</grpc.version>
  27. <guava.version>26.0-android</guava.version><!-- Keep the Guava version in sync with grpc-java -->
  28. <junit.version>4.13.1</junit.version>
  29. <protobuf.version>3.9.1</protobuf.version><!-- Keep the Protobuf version in sync with grpc-java -->
  30. <rest-assured.version>3.1.0</rest-assured.version>
  31. <slf4j.version>1.7.26</slf4j.version>
  32. <testcontainers.version>1.10.7</testcontainers.version>
  33. <!-- Maven Plugin Versions -->
  34. <jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
  35. <maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
  36. <maven-failsafe-plugin.version>2.21.0</maven-failsafe-plugin.version>
  37. <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
  38. <maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
  39. <maven-release-plugin.version>2.5.3</maven-release-plugin.version>
  40. <maven-source-plugin.version>3.0.1</maven-source-plugin.version>
  41. <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
  42. <versions-maven-plugin.version>2.7</versions-maven-plugin.version>
  43. </properties>
  44. <name>java-control-plane</name>
  45. <url>https://github.com/envoyproxy/java-control-plane</url>
  46. <description>
  47. The Envoy java-control-plane is a Java-based library for building
  48. implementations of the data-plane-api.
  49. </description>
  50. <organization>
  51. <name>The Envoy Project</name>
  52. <url>http://envoyproxy.io/</url>
  53. </organization>
  54. <licenses>
  55. <license>
  56. <name>Apache License, Version 2.0</name>
  57. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  58. </license>
  59. </licenses>
  60. <inceptionYear>2018</inceptionYear>
  61. <scm>
  62. <url>https://github.com/envoyproxy/java-control-plane</url>
  63. <connection>scm:git:git://github.com/envoyproxy/java-control-plane.git</connection>
  64. <developerConnection>scm:git:ssh://git@github.com/envoyproxy/java-control-plane.git</developerConnection>
  65. <tag>v0.1.27</tag>
  66. </scm>
  67. <developers>
  68. <developer>
  69. <id>envoyproxy.io</id>
  70. <name>The Envoy Contributors</name>
  71. <email>envoy-users@googlegroups.com</email>
  72. <url>http://envoyproxy.io/</url>
  73. <organization>The Envoy Project</organization>
  74. <organizationUrl>http://envoyproxy.io/</organizationUrl>
  75. </developer>
  76. </developers>
  77. <dependencies>
  78. <!-- Test Dependencies -->
  79. <dependency>
  80. <groupId>junit</groupId>
  81. <artifactId>junit</artifactId>
  82. <version>${junit.version}</version>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.assertj</groupId>
  87. <artifactId>assertj-core</artifactId>
  88. <version>${assertj.version}</version>
  89. <scope>test</scope>
  90. </dependency>
  91. </dependencies>
  92. <distributionManagement>
  93. <snapshotRepository>
  94. <id>sonatype-nexus-snapshots</id>
  95. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  96. </snapshotRepository>
  97. </distributionManagement>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-checkstyle-plugin</artifactId>
  103. <version>${maven-checkstyle-plugin.version}</version>
  104. <dependencies>
  105. <dependency>
  106. <groupId>com.puppycrawl.tools</groupId>
  107. <artifactId>checkstyle</artifactId>
  108. <version>${checkstyle.version}</version>
  109. </dependency>
  110. </dependencies>
  111. <executions>
  112. <execution>
  113. <id>validate</id>
  114. <phase>validate</phase>
  115. <configuration>
  116. <configLocation>buildscripts/checkstyle.xml</configLocation>
  117. <consoleOutput>true</consoleOutput>
  118. <encoding>UTF-8</encoding>
  119. <failOnViolation>true</failOnViolation>
  120. <includeTestSourceDirectory>true</includeTestSourceDirectory>
  121. <violationSeverity>warning</violationSeverity>
  122. </configuration>
  123. <goals>
  124. <goal>check</goal>
  125. </goals>
  126. </execution>
  127. </executions>
  128. </plugin>
  129. <plugin>
  130. <artifactId>maven-javadoc-plugin</artifactId>
  131. <version>${maven-javadoc-plugin.version}</version>
  132. <configuration>
  133. <author>false</author>
  134. <breakiterator>true</breakiterator>
  135. <doclint>accessibility,html,reference,syntax</doclint>
  136. <keywords>true</keywords>
  137. <version>false</version>
  138. </configuration>
  139. <executions>
  140. <execution>
  141. <id>attach-javadocs</id>
  142. <goals>
  143. <goal>jar</goal>
  144. </goals>
  145. </execution>
  146. </executions>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-source-plugin</artifactId>
  151. <version>${maven-source-plugin.version}</version>
  152. <executions>
  153. <execution>
  154. <id>attach-sources-no-fork</id>
  155. <phase>package</phase>
  156. <goals>
  157. <goal>jar-no-fork</goal>
  158. </goals>
  159. </execution>
  160. </executions>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.jacoco</groupId>
  164. <artifactId>jacoco-maven-plugin</artifactId>
  165. <version>${jacoco-maven-plugin.version}</version>
  166. <executions>
  167. <execution>
  168. <id>jacoco-prepare-ut-agent</id>
  169. <goals>
  170. <goal>prepare-agent</goal>
  171. </goals>
  172. </execution>
  173. <execution>
  174. <id>jacoco-prepare-it-agent</id>
  175. <goals>
  176. <goal>prepare-agent-integration</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. <profiles>
  184. <profile>
  185. <id>ci</id>
  186. <build>
  187. <plugins>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-release-plugin</artifactId>
  191. <version>${maven-release-plugin.version}</version>
  192. <configuration>
  193. <autoVersionSubmodules>true</autoVersionSubmodules>
  194. <tagNameFormat>v@{project.version}</tagNameFormat>
  195. </configuration>
  196. </plugin>
  197. <plugin>
  198. <groupId>org.codehaus.mojo</groupId>
  199. <artifactId>versions-maven-plugin</artifactId>
  200. <version>${versions-maven-plugin.version}</version>
  201. </plugin>
  202. <plugin>
  203. <groupId>org.sonatype.plugins</groupId>
  204. <artifactId>nexus-staging-maven-plugin</artifactId>
  205. <version>${nexus-staging-maven-plugin.version}</version>
  206. <extensions>true</extensions>
  207. <configuration>
  208. <serverId>sonatype-nexus-staging</serverId>
  209. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  210. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  211. <stagingProgressTimeoutMinutes>20</stagingProgressTimeoutMinutes>
  212. </configuration>
  213. </plugin>
  214. </plugins>
  215. </build>
  216. </profile>
  217. <profile>
  218. <id>signing</id>
  219. <build>
  220. <plugins>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-gpg-plugin</artifactId>
  224. <version>${maven-gpg-plugin.version}</version>
  225. <executions>
  226. <execution>
  227. <id>sign-artifacts</id>
  228. <phase>verify</phase>
  229. <goals>
  230. <goal>sign</goal>
  231. </goals>
  232. </execution>
  233. </executions>
  234. </plugin>
  235. </plugins>
  236. </build>
  237. </profile>
  238. </profiles>
  239. </project>