You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 8.0 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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>server</artifactId>
  7. <groupId>org.dubhe</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dubhe-serving</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>云端Serving</name>
  14. <description>Dubhe Serving</description>
  15. <dependencies>
  16. <!-- Biz 通用配置 -->
  17. <dependency>
  18. <groupId>org.dubhe.biz</groupId>
  19. <artifactId>base</artifactId>
  20. <version>${org.dubhe.biz.base.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.dubhe.biz</groupId>
  24. <artifactId>data-permission</artifactId>
  25. <version>${org.dubhe.biz.data-permission.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.dubhe.biz</groupId>
  29. <artifactId>db</artifactId>
  30. <version>${org.dubhe.biz.db.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.dubhe.biz</groupId>
  34. <artifactId>log</artifactId>
  35. <version>${org.dubhe.biz.log.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.dubhe.biz</groupId>
  39. <artifactId>file</artifactId>
  40. <version>${org.dubhe.biz.file.version}</version>
  41. </dependency>
  42. <!-- Cloud swagger -->
  43. <dependency>
  44. <groupId>org.dubhe.cloud</groupId>
  45. <artifactId>swagger</artifactId>
  46. <version>${org.dubhe.cloud.swagger.version}</version>
  47. </dependency>
  48. <!-- 统一权限配置 -->
  49. <dependency>
  50. <groupId>org.dubhe.cloud</groupId>
  51. <artifactId>auth-config</artifactId>
  52. <version>${org.dubhe.cloud.auth-config.version}</version>
  53. </dependency>
  54. <!-- 远程调用 -->
  55. <dependency>
  56. <groupId>org.dubhe.cloud</groupId>
  57. <artifactId>remote-call</artifactId>
  58. <version>${org.dubhe.cloud.remote-call.version}</version>
  59. </dependency>
  60. <!-- 注册中心 -->
  61. <dependency>
  62. <groupId>org.dubhe.cloud</groupId>
  63. <artifactId>registration</artifactId>
  64. <version>${org.dubhe.cloud.registration.version}</version>
  65. </dependency>
  66. <!-- 配置中心 -->
  67. <dependency>
  68. <groupId>org.dubhe.cloud</groupId>
  69. <artifactId>configuration</artifactId>
  70. <version>${org.dubhe.cloud.configuration.version}</version>
  71. </dependency>
  72. <!-- common-k8s -->
  73. <dependency>
  74. <groupId>org.dubhe</groupId>
  75. <artifactId>common-k8s</artifactId>
  76. <version>${org.dubhe.common-k8s.version}</version>
  77. </dependency>
  78. <!-- common-recycle 垃圾回收-->
  79. <dependency>
  80. <groupId>org.dubhe</groupId>
  81. <artifactId>common-recycle</artifactId>
  82. <version>${org.dubhe.common-recycle.version}</version>
  83. </dependency>
  84. <!-- 单元测试 -->
  85. <dependency>
  86. <groupId>org.dubhe.cloud</groupId>
  87. <artifactId>unit-test</artifactId>
  88. <version>${org.dubhe.cloud.unit-test.version}</version>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <!-- grpc -->
  97. <dependency>
  98. <groupId>io.grpc</groupId>
  99. <artifactId>grpc-netty-shaded</artifactId>
  100. <version>${grpc.version}</version>
  101. <exclusions>
  102. <exclusion>
  103. <artifactId>grpc-core</artifactId>
  104. <groupId>io.grpc</groupId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.grpc</groupId>
  110. <artifactId>grpc-protobuf</artifactId>
  111. <version>${grpc.version}</version>
  112. <exclusions>
  113. <exclusion>
  114. <artifactId>grpc-api</artifactId>
  115. <groupId>io.grpc</groupId>
  116. </exclusion>
  117. </exclusions>
  118. </dependency>
  119. <dependency>
  120. <groupId>io.grpc</groupId>
  121. <artifactId>grpc-stub</artifactId>
  122. <version>${grpc.version}</version>
  123. <exclusions>
  124. <exclusion>
  125. <artifactId>grpc-api</artifactId>
  126. <groupId>io.grpc</groupId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <dependency>
  131. <groupId>io.grpc</groupId>
  132. <artifactId>grpc-core</artifactId>
  133. <version>${grpc.version}</version>
  134. <exclusions>
  135. <exclusion>
  136. <artifactId>grpc-api</artifactId>
  137. <groupId>io.grpc</groupId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>io.grpc</groupId>
  143. <artifactId>grpc-api</artifactId>
  144. <version>${grpc.version}</version>
  145. </dependency>
  146. <dependency> <!-- necessary for Java 9+ -->
  147. <groupId>org.apache.tomcat</groupId>
  148. <artifactId>annotations-api</artifactId>
  149. <version>${tomcat.annotations-api.version}</version>
  150. <scope>provided</scope>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <extensions>
  155. <!-- gRPC 代码生成插件需要此 extension -->
  156. <extension>
  157. <groupId>kr.motd.maven</groupId>
  158. <artifactId>os-maven-plugin</artifactId>
  159. <version>${os.plugin.version}</version>
  160. </extension>
  161. </extensions>
  162. <plugins>
  163. <!-- protobuf java 代码生成器 -->
  164. <plugin>
  165. <groupId>org.springframework.boot</groupId>
  166. <artifactId>spring-boot-maven-plugin</artifactId>
  167. <configuration>
  168. <skip>false</skip>
  169. <fork>true</fork>
  170. <classifier>exec</classifier>
  171. </configuration>
  172. </plugin>
  173. <!-- 跳过单元测试 -->
  174. <plugin>
  175. <groupId>org.apache.maven.plugins</groupId>
  176. <artifactId>maven-surefire-plugin</artifactId>
  177. <configuration>
  178. <skipTests>true</skipTests>
  179. </configuration>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.xolstice.maven.plugins</groupId>
  183. <artifactId>protobuf-maven-plugin</artifactId>
  184. <version>${protobuf.plugin.version}</version>
  185. <configuration>
  186. <protocArtifact>com.google.protobuf:protoc:${protoc.version}:exe:${os.detected.classifier}</protocArtifact>
  187. <pluginId>grpc-java</pluginId>
  188. <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
  189. </configuration>
  190. <executions>
  191. <execution>
  192. <goals>
  193. <goal>compile</goal>
  194. <goal>compile-custom</goal>
  195. </goals>
  196. </execution>
  197. </executions>
  198. </plugin>
  199. </plugins>
  200. <resources>
  201. <resource>
  202. <filtering>true</filtering>
  203. <directory>src/main/resources</directory>
  204. </resource>
  205. </resources>
  206. </build>
  207. </project>

一站式算法开发平台、高性能分布式深度学习框架、先进算法模型库、视觉模型炼知平台、数据可视化分析平台等一系列平台及工具,在模型高效分布式训练、数据处理和可视分析、模型炼知和轻量化等技术上形成独特优势,目前已在产学研等各领域近千家单位及个人提供AI应用赋能