pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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>org.tmatesoft.svnkit</groupId>
  21. <artifactId>svnkit</artifactId>
  22. <version>1.9.3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.eclipse.jgit</groupId>
  26. <artifactId>org.eclipse.jgit</artifactId>
  27. <version>5.5.0.201909110433-r</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.grpc</groupId>
  31. <artifactId>grpc-netty-shaded</artifactId>
  32. <version>${grpc.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.grpc</groupId>
  36. <artifactId>grpc-protobuf</artifactId>
  37. <version>${grpc.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.grpc</groupId>
  41. <artifactId>grpc-stub</artifactId>
  42. <version>${grpc.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter</artifactId>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-autoconfigure</artifactId>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. </dependency>
  58. <!-- 通用工具类 -->
  59. <dependency>
  60. <groupId>org.apache.commons</groupId>
  61. <artifactId>commons-lang3</artifactId>
  62. <version>3.7</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-classic</artifactId>
  67. <version>1.1.7</version>
  68. </dependency>
  69. <!-- 序列化/反序列化工具 -->
  70. <dependency>
  71. <groupId>io.protostuff</groupId>
  72. <artifactId>protostuff-core</artifactId>
  73. <version>1.6.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>io.protostuff</groupId>
  77. <artifactId>protostuff-runtime</artifactId>
  78. <version>1.6.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. <version>1.2.58</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alipay.sofa</groupId>
  87. <artifactId>hessian</artifactId>
  88. <version>3.3.6</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.netty</groupId>
  92. <artifactId>netty-all</artifactId>
  93. <version>4.1.36.Final</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-compress</artifactId>
  98. <version>1.19</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.spotify</groupId>
  102. <artifactId>docker-client</artifactId>
  103. <version>3.5.12</version>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <extensions>
  108. <extension>
  109. <groupId>kr.motd.maven</groupId>
  110. <artifactId>os-maven-plugin</artifactId>
  111. <version>1.5.0.Final</version>
  112. </extension>
  113. </extensions>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <configuration>
  119. <source>1.8</source>
  120. <target>1.8</target>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <groupId>org.xolstice.maven.plugins</groupId>
  125. <artifactId>protobuf-maven-plugin</artifactId>
  126. <version>0.5.1</version>
  127. <configuration>
  128. <protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
  129. <pluginId>grpc-java</pluginId>
  130. <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
  131. </configuration>
  132. <executions>
  133. <execution>
  134. <goals>
  135. <goal>compile</goal>
  136. <goal>compile-custom</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. <distributionManagement>
  144. <repository>
  145. <id>rdc-releases</id>
  146. <url>https://repo.rdc.aliyun.com/repository/73801-release-g4ZTFl/</url>
  147. </repository>
  148. <snapshotRepository>
  149. <id>rdc-snapshots</id>
  150. <url>https://repo.rdc.aliyun.com/repository/73801-snapshot-e8LM6K/</url>
  151. </snapshotRepository>
  152. </distributionManagement>
  153. </project>