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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.5.RELEASE</version>
  9. </parent>
  10. <groupId>org.onebrain</groupId>
  11. <artifactId>distribute-train-operator</artifactId>
  12. <version>1.0</version>
  13. <name>distribute-train-operator</name>
  14. <description>distribute-train operatior</description>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. <fabric.io.version>4.9.0</fabric.io.version>
  20. </properties>
  21. <dependencies>
  22. <!-- web -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <!-- k8s -->
  28. <dependency>
  29. <groupId>io.fabric8</groupId>
  30. <artifactId>kubernetes-client</artifactId>
  31. <version>${fabric.io.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.fabric8</groupId>
  35. <artifactId>kubernetes-assertions</artifactId>
  36. <version>4.0.0</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <!-- configuration processor -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-configuration-processor</artifactId>
  43. </dependency>
  44. <!-- redis -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-data-redis</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>redis.clients</groupId>
  51. <artifactId>jedis</artifactId>
  52. </dependency>
  53. <!-- common jars -->
  54. <dependency>
  55. <groupId>commons-io</groupId>
  56. <artifactId>commons-io</artifactId>
  57. <version>2.6</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.commons</groupId>
  61. <artifactId>commons-compress</artifactId>
  62. <version>1.19</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-codec</groupId>
  66. <artifactId>commons-codec</artifactId>
  67. </dependency>
  68. <!-- tools -->
  69. <dependency>
  70. <groupId>cn.hutool</groupId>
  71. <artifactId>hutool-all</artifactId>
  72. <version>5.1.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.google.guava</groupId>
  76. <artifactId>guava</artifactId>
  77. <version>27.0.1-jre</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alibaba</groupId>
  81. <artifactId>fastjson</artifactId>
  82. <version>1.2.54</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-test</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. </plugin>
  101. <!-- 打包时跳过测试 -->
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-surefire-plugin</artifactId>
  105. <configuration>
  106. <skip>true</skip>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. <repositories>
  112. <repository>
  113. <id>public</id>
  114. <name>aliyun nexus</name>
  115. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  116. <releases>
  117. <enabled>true</enabled>
  118. </releases>
  119. </repository>
  120. </repositories>
  121. <pluginRepositories>
  122. <pluginRepository>
  123. <id>public</id>
  124. <name>aliyun nexus</name>
  125. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  126. <releases>
  127. <enabled>true</enabled>
  128. </releases>
  129. <snapshots>
  130. <enabled>false</enabled>
  131. </snapshots>
  132. </pluginRepository>
  133. </pluginRepositories>
  134. </project>

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

Contributors (1)