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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. <groupId>org.dubhe</groupId>
  6. <artifactId>dataset-util</artifactId>
  7. <version>0.1.0-SNAPSHOT</version>
  8. <name>dataset-util</name>
  9. <description>数据处理模块工具</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.3.0.RELEASE</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba</groupId>
  23. <artifactId>druid</artifactId>
  24. <version>1.1.6</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. <version>8.0.17</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-boot-starter</artifactId>
  39. <version>3.2.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>1.2.47</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.minio</groupId>
  48. <artifactId>minio</artifactId>
  49. <version>8.2.1</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>stax</groupId>
  53. <artifactId>stax-api</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>stax</groupId>
  57. <artifactId>stax</artifactId>
  58. </exclusion>
  59. <exclusion>
  60. <groupId>com.fasterxml.jackson.core</groupId>
  61. <artifactId>jackson-databind</artifactId>
  62. </exclusion>
  63. <exclusion>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-annotations</artifactId>
  66. </exclusion>
  67. <exclusion>
  68. <groupId>com.fasterxml.jackson.core</groupId>
  69. <artifactId>jackson-core</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <!-- for spring boot -->
  74. <dependency>
  75. <groupId>org.apache.shardingsphere</groupId>
  76. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  77. <version>4.1.1</version>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.apache.shardingsphere</groupId>
  81. <artifactId>shardingsphere-sql-parser-oracle</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <groupId>org.apache.shardingsphere</groupId>
  85. <artifactId>shardingsphere-sql-parser-postgresql</artifactId>
  86. </exclusion>
  87. <exclusion>
  88. <groupId>org.apache.shardingsphere</groupId>
  89. <artifactId>shardingsphere-sql-parser-sqlserver</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-lang3</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-io</groupId>
  99. <artifactId>commons-io</artifactId>
  100. <version>1.3.2</version>
  101. </dependency>
  102. <!--监控sql日志-->
  103. <dependency>
  104. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  105. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  106. <version>1.16</version>
  107. </dependency>
  108. <!--工具包-->
  109. <dependency>
  110. <groupId>cn.hutool</groupId>
  111. <artifactId>hutool-core</artifactId>
  112. <version>5.0.6</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.twelvemonkeys.imageio</groupId>
  116. <artifactId>imageio-jpeg</artifactId>
  117. <version>3.4.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>me.tongfei</groupId>
  121. <artifactId>progressbar</artifactId>
  122. <version>0.9.1</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-aop</artifactId>
  127. </dependency>
  128. <!-- elasticsearch -->
  129. <dependency>
  130. <groupId>org.elasticsearch.client</groupId>
  131. <artifactId>transport</artifactId>
  132. </dependency>
  133. </dependencies>
  134. <dependencyManagement>
  135. <dependencies>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-dependencies</artifactId>
  139. <version>${spring-boot.version}</version>
  140. <type>pom</type>
  141. <scope>import</scope>
  142. <exclusions>
  143. <exclusion>
  144. <groupId>com.zaxxer</groupId>
  145. <artifactId>HikariCP</artifactId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. </dependencies>
  150. </dependencyManagement>
  151. <build>
  152. <plugins>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-compiler-plugin</artifactId>
  156. <version>3.8.1</version>
  157. <configuration>
  158. <source>1.8</source>
  159. <target>1.8</target>
  160. <encoding>UTF-8</encoding>
  161. </configuration>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.springframework.boot</groupId>
  165. <artifactId>spring-boot-maven-plugin</artifactId>
  166. <version>2.3.0.RELEASE</version>
  167. <configuration>
  168. <mainClass>org.dubhe.datasetutil.DatasetUtilApplication</mainClass>
  169. </configuration>
  170. <executions>
  171. <execution>
  172. <id>repackage</id>
  173. <goals>
  174. <goal>repackage</goal>
  175. </goals>
  176. </execution>
  177. </executions>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. </project>

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

Contributors (1)