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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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.0.1-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>7.0.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.xiaoleilu</groupId>
  53. <artifactId>hutool-all</artifactId>
  54. <version>3.0.1</version>
  55. </dependency>
  56. <!-- for spring boot -->
  57. <dependency>
  58. <groupId>org.apache.shardingsphere</groupId>
  59. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  60. <version>4.0.0-RC1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.commons</groupId>
  64. <artifactId>commons-lang3</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-io</groupId>
  68. <artifactId>commons-io</artifactId>
  69. <version>1.3.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.aspectj</groupId>
  73. <artifactId>aspectjweaver</artifactId>
  74. <version>1.8.9</version>
  75. </dependency>
  76. <!--监控sql日志-->
  77. <dependency>
  78. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  79. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  80. <version>1.16</version>
  81. </dependency>
  82. <!--工具包-->
  83. <dependency>
  84. <groupId>cn.hutool</groupId>
  85. <artifactId>hutool-all</artifactId>
  86. <version>5.0.6</version>
  87. </dependency>
  88. </dependencies>
  89. <dependencyManagement>
  90. <dependencies>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-dependencies</artifactId>
  94. <version>${spring-boot.version}</version>
  95. <type>pom</type>
  96. <scope>import</scope>
  97. </dependency>
  98. </dependencies>
  99. </dependencyManagement>
  100. <build>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-compiler-plugin</artifactId>
  105. <version>3.8.1</version>
  106. <configuration>
  107. <source>1.8</source>
  108. <target>1.8</target>
  109. <encoding>UTF-8</encoding>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. <version>2.3.0.RELEASE</version>
  116. <configuration>
  117. <mainClass>org.dubhe.datasetutil.DatasetUtilApplication</mainClass>
  118. </configuration>
  119. <executions>
  120. <execution>
  121. <id>repackage</id>
  122. <goals>
  123. <goal>repackage</goal>
  124. </goals>
  125. </execution>
  126. </executions>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>

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

Contributors (1)