sdp-spring-boot-hdfs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.sdp-tech-nj</groupId>
<artifactId>sdp-spring-boot-hdfs</artifactId>
<version>2.6.9</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.sdp-tech-nj</groupId>
<artifactId>sdp-spring-boot-starter-parent</artifactId>
<version>2.6.9</version>
</parent>
<artifactId>sdp-spring-boot-hdfs</artifactId>
<properties>
<sdp-spring-boot-starter-parent.version>2.6.8</sdp-spring-boot-starter-parent.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>
-proc:none
</compilerArgument>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- 引入 Hadoop-client 依赖 -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>3.3.4</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 引入 Hadoop-client 依赖 end -->
<dependency>
<groupId>com.github.sdp-tech-nj</groupId>
<artifactId>sdp-spring-boot-starter</artifactId>
<version>${sdp-spring-boot-starter-parent.version}</version>
</dependency>
</dependencies>
</project>