115 lines
3.6 KiB
XML
115 lines
3.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<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">
|
||
<parent>
|
||
<artifactId>common</artifactId>
|
||
<groupId>com.cqu</groupId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>common-linux</artifactId>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.apache.hadoop</groupId>
|
||
<artifactId>hadoop-client</artifactId>
|
||
<version>3.1.3</version>
|
||
</dependency>
|
||
<!-- 这里不注释会和springboot里面的jar冲突-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.apache.logging.log4j</groupId>-->
|
||
<!-- <artifactId>log4j-slf4j-impl</artifactId>-->
|
||
<!-- <version>2.12.0</version>-->
|
||
<!-- </dependency>-->
|
||
<!-- 统一flume和hadoop中guava版本-->
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
<version>27.0-jre</version>
|
||
</dependency>
|
||
<!--远程连接linux,执行命令-->
|
||
<dependency>
|
||
<groupId>ch.ethz.ganymed</groupId>
|
||
<artifactId>ganymed-ssh2</artifactId>
|
||
<version>build210</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.directory.studio</groupId>
|
||
<artifactId>org.apache.commons.lang</artifactId>
|
||
<version>2.6</version>
|
||
</dependency>
|
||
|
||
<!--http3远程工具-->
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
<version>3.3.0</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.slf4j</groupId>
|
||
<artifactId>slf4j-log4j12</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!--连接SFTP服务器工具-->
|
||
<dependency>
|
||
<groupId>commons-net</groupId>
|
||
<artifactId>commons-net</artifactId>
|
||
<version>3.8.0</version>
|
||
</dependency>
|
||
|
||
|
||
|
||
<dependency>
|
||
<groupId>com.jcraft</groupId>
|
||
<artifactId>jsch</artifactId>
|
||
<version>0.1.55</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.cqu</groupId>
|
||
<artifactId>common-utils</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>4.13.2</version>
|
||
<!-- <scope>compile</scope>-->
|
||
</dependency>
|
||
|
||
|
||
</dependencies>
|
||
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-assembly-plugin</artifactId>
|
||
<version>3.0.0</version>
|
||
<configuration>
|
||
<descriptorRefs>
|
||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
</descriptorRefs>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>make-assembly</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>single</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
|
||
</project> |