2015-09-22 21:49:08 +08:00
|
|
|
<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">
|
2017-05-18 20:42:57 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-09-22 21:49:08 +08:00
|
|
|
|
2017-05-18 20:42:57 +08:00
|
|
|
<groupId>org.csource</groupId>
|
|
|
|
<artifactId>fastdfs-client-java</artifactId>
|
2020-01-03 08:51:17 +08:00
|
|
|
<version>1.29-SNAPSHOT</version>
|
2017-05-18 20:42:57 +08:00
|
|
|
<name>fastdfs-client-java</name>
|
|
|
|
<description>fastdfs client for java</description>
|
|
|
|
<packaging>jar</packaging>
|
2015-09-22 21:49:08 +08:00
|
|
|
|
2017-05-18 20:42:57 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.test.failure.ignore>true</maven.test.failure.ignore>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
2017-06-04 19:24:13 +08:00
|
|
|
<jdk.version>1.6</jdk.version>
|
2021-04-20 14:11:49 +08:00
|
|
|
<slf4j.version>1.7.26</slf4j.version>
|
2017-05-18 20:42:57 +08:00
|
|
|
</properties>
|
|
|
|
|
2019-07-13 15:49:36 +08:00
|
|
|
<dependencies>
|
2021-04-20 14:11:49 +08:00
|
|
|
<dependency>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
</dependency>
|
2019-07-13 15:49:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2021-04-20 14:11:49 +08:00
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
2019-07-13 15:49:36 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-13 22:34:35 +08:00
|
|
|
<version>4.13.1</version>
|
2019-07-13 15:49:36 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2017-05-18 20:42:57 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-10-29 09:27:00 +08:00
|
|
|
<version>3.5.1</version>
|
2017-05-18 20:42:57 +08:00
|
|
|
<configuration>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<source>${jdk.version}</source>
|
|
|
|
<target>${jdk.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-09-22 21:49:08 +08:00
|
|
|
|
2017-04-17 10:46:07 +08:00
|
|
|
</project>
|