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 5.6 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. <name>Dubhe 点云标注</name>
  12. <artifactId>dubhe-point-cloud</artifactId>
  13. <dependencies>
  14. <!-- 注册中心 -->
  15. <dependency>
  16. <groupId>org.dubhe.cloud</groupId>
  17. <artifactId>registration</artifactId>
  18. <version>${org.dubhe.cloud.registration.version}</version>
  19. </dependency>
  20. <!-- 配置中心 -->
  21. <dependency>
  22. <groupId>org.dubhe.cloud</groupId>
  23. <artifactId>configuration</artifactId>
  24. <version>${org.dubhe.cloud.configuration.version}</version>
  25. </dependency>
  26. <!-- 统一Rest返回工具结构 -->
  27. <dependency>
  28. <groupId>org.dubhe.biz</groupId>
  29. <artifactId>data-response</artifactId>
  30. <version>${org.dubhe.biz.data-response.version}</version>
  31. </dependency>
  32. <!-- 统一权限配置 -->
  33. <dependency>
  34. <groupId>org.dubhe.cloud</groupId>
  35. <artifactId>auth-config</artifactId>
  36. <version>${org.dubhe.cloud.auth-config.version}</version>
  37. </dependency>
  38. <!-- Cloud swagger -->
  39. <dependency>
  40. <groupId>org.dubhe.cloud</groupId>
  41. <artifactId>swagger</artifactId>
  42. <version>${org.dubhe.cloud.swagger.version}</version>
  43. </dependency>
  44. <!--持久层操作-->
  45. <dependency>
  46. <groupId>org.dubhe.biz</groupId>
  47. <artifactId>db</artifactId>
  48. <version>${org.dubhe.biz.db.version}</version>
  49. </dependency>
  50. <!-- k8s API依赖-->
  51. <dependency>
  52. <groupId>org.dubhe</groupId>
  53. <artifactId>common-k8s</artifactId>
  54. <version>${org.dubhe.common-k8s.version}</version>
  55. </dependency>
  56. <!-- log依赖-->
  57. <dependency>
  58. <groupId>org.dubhe.biz</groupId>
  59. <artifactId>log</artifactId>
  60. <version>${org.dubhe.biz.log.version}</version>
  61. </dependency>
  62. <!-- 远程调用 -->
  63. <dependency>
  64. <groupId>org.dubhe.cloud</groupId>
  65. <artifactId>remote-call</artifactId>
  66. <version>${org.dubhe.cloud.remote-call.version}</version>
  67. </dependency>
  68. <!--mapStruct依赖-->
  69. <dependency>
  70. <groupId>org.mapstruct</groupId>
  71. <artifactId>mapstruct-jdk8</artifactId>
  72. <version>${mapstruct.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mapstruct</groupId>
  76. <artifactId>mapstruct-processor</artifactId>
  77. <version>${mapstruct.version}</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-beanutils</groupId>
  82. <artifactId>commons-beanutils</artifactId>
  83. <version>1.9.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.dubhe.biz</groupId>
  87. <artifactId>state-machine</artifactId>
  88. <version>0.0.1-SNAPSHOT</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.dubhe.biz</groupId>
  93. <artifactId>state-machine</artifactId>
  94. <version>0.0.1-SNAPSHOT</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-test</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-test</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.redisson</groupId>
  111. <artifactId>redisson-spring-boot-starter</artifactId>
  112. <version>${org.redisson.version}</version>
  113. </dependency>
  114. <!-- common-recycle 垃圾回收-->
  115. <dependency>
  116. <groupId>org.dubhe</groupId>
  117. <artifactId>common-recycle</artifactId>
  118. <version>${org.dubhe.common-recycle.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.shardingsphere</groupId>
  122. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  123. <version>${sharding-jdbc}</version>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. <configuration>
  132. <skip>false</skip>
  133. <fork>true</fork>
  134. <classifier>exec</classifier>
  135. </configuration>
  136. </plugin>
  137. <!-- 跳过单元测试 -->
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-surefire-plugin</artifactId>
  141. <configuration>
  142. <skipTests>true</skipTests>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>

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