pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. <artifactId>dmp-comp</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dmp-file-starter</artifactId>
  12. <version>1.0.0</version>
  13. <dependencies>
  14. <!-- MinIO -->
  15. <dependency>
  16. <groupId>io.minio</groupId>
  17. <artifactId>minio</artifactId>
  18. <version>8.3.0</version>
  19. </dependency>
  20. <!-- fm 工具包 -->
  21. <dependency>
  22. <groupId>com.persagy</groupId>
  23. <artifactId>dmp-common</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-openfeign-core</artifactId>
  29. <version>2.1.5.RELEASE</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.github.openfeign</groupId>
  33. <artifactId>feign-core</artifactId>
  34. <version>10.4.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.hadoop</groupId>
  38. <artifactId>hadoop-common</artifactId>
  39. <version>2.5.1</version>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.slf4j</groupId>
  43. <artifactId>slf4j-log4j12</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.hadoop</groupId>
  49. <artifactId>hadoop-hdfs</artifactId>
  50. <version>2.5.1</version>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-log4j12</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/org.slf4j/log4j-over-slf4j -->
  59. <dependency>
  60. <groupId>org.slf4j</groupId>
  61. <artifactId>log4j-over-slf4j</artifactId>
  62. <version>1.7.32</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-annotation</artifactId>
  67. <version>3.3.1</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-extension</artifactId>
  73. <version>3.3.1</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>jdk.tools</groupId>
  78. <artifactId>jdk.tools</artifactId>
  79. <version>1.8</version>
  80. <scope>system</scope>
  81. <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
  82. </dependency>
  83. </dependencies>
  84. </project>