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.5 kB

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

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