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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.dubhe</groupId>
  7. <artifactId>server</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>org.dubhe</groupId>
  11. <artifactId>dubhe-data-task</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <name>Task 数据集定时任务</name>
  15. <description>数据集定时任务模块</description>
  16. <dependencies>
  17. <!-- Biz 通用配置 -->
  18. <dependency>
  19. <groupId>org.dubhe.biz</groupId>
  20. <artifactId>base</artifactId>
  21. <version>${org.dubhe.biz.base.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.dubhe.biz</groupId>
  25. <artifactId>file</artifactId>
  26. <version>${org.dubhe.biz.file.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.dubhe.biz</groupId>
  30. <artifactId>data-permission</artifactId>
  31. <version>${org.dubhe.biz.data-permission.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.dubhe.biz</groupId>
  35. <artifactId>redis</artifactId>
  36. <version>${org.dubhe.biz.redis.version}</version>
  37. </dependency>
  38. <!-- 注册中心 -->
  39. <dependency>
  40. <groupId>org.dubhe.cloud</groupId>
  41. <artifactId>registration</artifactId>
  42. <version>${org.dubhe.cloud.registration.version}</version>
  43. </dependency>
  44. <!-- 配置中心 -->
  45. <dependency>
  46. <groupId>org.dubhe.cloud</groupId>
  47. <artifactId>configuration</artifactId>
  48. <version>${org.dubhe.cloud.configuration.version}</version>
  49. </dependency>
  50. <!-- 远程调用 -->
  51. <dependency>
  52. <groupId>org.dubhe.cloud</groupId>
  53. <artifactId>remote-call</artifactId>
  54. <version>${org.dubhe.cloud.remote-call.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. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <!--springboot mail-->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-mail</artifactId>
  70. </dependency>
  71. <!--mapStruct依赖-->
  72. <dependency>
  73. <groupId>org.mapstruct</groupId>
  74. <artifactId>mapstruct-jdk8</artifactId>
  75. <version>${mapstruct.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.mapstruct</groupId>
  79. <artifactId>mapstruct-processor</artifactId>
  80. <version>${mapstruct.version}</version>
  81. <scope>provided</scope>
  82. </dependency>
  83. <!-- javacv -->
  84. <dependency>
  85. <groupId>org.bytedeco</groupId>
  86. <artifactId>javacv</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.bytedeco.javacpp-presets</groupId>
  90. <artifactId>ffmpeg-platform</artifactId>
  91. </dependency>
  92. <!-- for spring boot -->
  93. <dependency>
  94. <groupId>org.apache.shardingsphere</groupId>
  95. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  96. <version>${sharding-jdbc}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.dubhe</groupId>
  100. <artifactId>dubhe-data</artifactId>
  101. <version>${org.dubhe.dubhe-data.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.dubhe</groupId>
  105. <artifactId>dubhe-data-dcm</artifactId>
  106. <version>${org.dubhe.dubhe-data-dcm.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.alibaba</groupId>
  110. <artifactId>easyexcel</artifactId>
  111. <version>${easyexcel}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>net.sourceforge.javacsv</groupId>
  115. <artifactId>javacsv</artifactId>
  116. <version>${javacsv}</version>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-maven-plugin</artifactId>
  124. <configuration>
  125. <skip>false</skip>
  126. <fork>true</fork>
  127. <classifier>exec</classifier>
  128. <includeSystemScope>true</includeSystemScope>
  129. </configuration>
  130. </plugin>
  131. <!-- 跳过单元测试 -->
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-surefire-plugin</artifactId>
  135. <configuration>
  136. <skipTests>true</skipTests>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>

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