pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. <parent>
  5. <artifactId>escheduler</artifactId>
  6. <groupId>cn.analysys</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>escheduler-rpc</artifactId>
  11. <name>escheduler-rpc</name>
  12. <url>https://github.com/analysys/EasyScheduler</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>1.7</maven.compiler.source>
  16. <maven.compiler.target>1.7</maven.compiler.target>
  17. <protobuf.output.directory>${project.basedir}/src/main/java</protobuf.output.directory>
  18. <protobuf.version>3.5.1</protobuf.version>
  19. <grpc.version>1.9.0</grpc.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.google.protobuf</groupId>
  24. <artifactId>protobuf-java</artifactId>
  25. <version>${protobuf.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.grpc</groupId>
  29. <artifactId>grpc-netty</artifactId>
  30. <version>${grpc.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.grpc</groupId>
  34. <artifactId>grpc-protobuf</artifactId>
  35. <version>${grpc.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.grpc</groupId>
  39. <artifactId>grpc-stub</artifactId>
  40. <version>${grpc.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.guava</groupId>
  44. <artifactId>guava</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <extensions>
  49. <extension>
  50. <groupId>kr.motd.maven</groupId>
  51. <artifactId>os-maven-plugin</artifactId>
  52. <version>1.5.0.Final</version>
  53. </extension>
  54. </extensions>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.xolstice.maven.plugins</groupId>
  58. <artifactId>protobuf-maven-plugin</artifactId>
  59. <version>0.5.0</version>
  60. <configuration>
  61. <protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
  62. <pluginId>grpc-java</pluginId>
  63. <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
  64. </configuration>
  65. <executions>
  66. <execution>
  67. <id>compile</id>
  68. <goals>
  69. <goal>compile</goal>
  70. </goals>
  71. </execution>
  72. <execution>
  73. <id>compile-custom</id>
  74. <goals>
  75. <goal>compile-custom</goal>
  76. </goals>
  77. <configuration>
  78. <outputDirectory>${protobuf.output.directory}</outputDirectory>
  79. </configuration>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. <!-- add generated proto buffer classes into the package -->
  84. <plugin>
  85. <groupId>org.codehaus.mojo</groupId>
  86. <artifactId>build-helper-maven-plugin</artifactId>
  87. <version>1.7</version>
  88. <executions>
  89. <execution>
  90. <id>add-classes</id>
  91. <phase>generate-sources</phase>
  92. <goals>
  93. <goal>add-source</goal>
  94. </goals>
  95. <configuration>
  96. <sources>
  97. <source>${protobuf.output.directory}</source>
  98. </sources>
  99. </configuration>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-compiler-plugin</artifactId>
  106. <configuration>
  107. <source>${java.version}</source>
  108. <target>${java.version}</target>
  109. <encoding>${project.build.sourceEncoding}</encoding>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>