api-0.1.27.pom 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <parent>
  5. <artifactId>java-control-plane</artifactId>
  6. <groupId>io.envoyproxy.controlplane</groupId>
  7. <version>0.1.27</version>
  8. </parent>
  9. <artifactId>api</artifactId>
  10. <properties>
  11. <checkstyle.skip>true</checkstyle.skip>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.grpc</groupId>
  16. <artifactId>grpc-protobuf</artifactId>
  17. <version>${grpc.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.grpc</groupId>
  21. <artifactId>grpc-stub</artifactId>
  22. <version>${grpc.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.protobuf</groupId>
  26. <artifactId>protobuf-java</artifactId>
  27. <version>${protobuf.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.annotation</groupId>
  31. <artifactId>javax.annotation-api</artifactId>
  32. <version>${annotation-api.version}</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <extensions>
  37. <extension>
  38. <groupId>kr.motd.maven</groupId>
  39. <artifactId>os-maven-plugin</artifactId>
  40. <version>1.5.0.Final</version>
  41. </extension>
  42. </extensions>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.xolstice.maven.plugins</groupId>
  46. <artifactId>protobuf-maven-plugin</artifactId>
  47. <version>0.6.1</version>
  48. <configuration>
  49. <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
  50. <pluginId>grpc-java</pluginId>
  51. <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
  52. <useArgumentFile>true</useArgumentFile>
  53. <checkStaleness>true</checkStaleness>
  54. <staleMillis>10000</staleMillis>
  55. </configuration>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>compile</goal>
  60. <goal>compile-custom</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>