pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>autodop</artifactId>
  7. <groupId>cn.reghao.autodop</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common</artifactId>
  12. <properties>
  13. <projOrchestration.build.sourceEncoding>utf-8</projOrchestration.build.sourceEncoding>
  14. <projOrchestration.reporting.outputEncoding>utf-8</projOrchestration.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <grpc.version>1.23.1</grpc.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>io.netty</groupId>
  21. <artifactId>netty-all</artifactId>
  22. <version>4.1.36.Final</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.code.gson</groupId>
  26. <artifactId>gson</artifactId>
  27. <version>2.8.5</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.commons</groupId>
  31. <artifactId>commons-lang3</artifactId>
  32. <version>3.7</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.commons</groupId>
  36. <artifactId>commons-compress</artifactId>
  37. <version>1.19</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-io</groupId>
  41. <artifactId>commons-io</artifactId>
  42. <version>2.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.httpcomponents</groupId>
  46. <artifactId>httpclient</artifactId>
  47. <version>4.5.8</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.httpcomponents</groupId>
  51. <artifactId>httpmime</artifactId>
  52. <version>4.5.8</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.sun.mail</groupId>
  56. <artifactId>javax.mail</artifactId>
  57. <version>RELEASE</version>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <extensions>
  62. <extension>
  63. <groupId>kr.motd.maven</groupId>
  64. <artifactId>os-maven-plugin</artifactId>
  65. <version>1.5.0.Final</version>
  66. </extension>
  67. </extensions>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-compiler-plugin</artifactId>
  72. <configuration>
  73. <source>1.8</source>
  74. <target>1.8</target>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.xolstice.maven.plugins</groupId>
  79. <artifactId>protobuf-maven-plugin</artifactId>
  80. <version>0.5.1</version>
  81. <configuration>
  82. <protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
  83. <pluginId>grpc-java</pluginId>
  84. <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
  85. </configuration>
  86. <executions>
  87. <execution>
  88. <goals>
  89. <goal>compile</goal>
  90. <goal>compile-custom</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>