7 Star 8 Fork 2

芝麻谷/fetch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.47 KB
一键复制 编辑 原始数据 按行查看 历史
home 提交于 2014-11-17 23:47 . 添加FTPUtil类
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>my</groupId>
<artifactId>fetch</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>fetch</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tiny.version>1.2.0-SNAPSHOT</tiny.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.tinygroup</groupId>
<artifactId>org.tinygroup.spider</artifactId>
<version>${tiny.version}</version>
</dependency>
<!-- <dependency> -->
<!-- <groupId>org.tinygroup</groupId> -->
<!-- <artifactId>org.tinygroup.htmlparser</artifactId> -->
<!-- <version>${tiny.version}</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.tinygroup</groupId> -->
<!-- <artifactId>org.tinygroup.httpvisit</artifactId> -->
<!-- <version>${tiny.version}</version> -->
<!-- </dependency> -->
<!-- <dependency> -->
<!-- <groupId>org.tinygroup</groupId> -->
<!-- <artifactId>org.tinygroup.xstream</artifactId> -->
<!-- <version>${tiny.version}</version> -->
<!-- </dependency> -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.3.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.3.3</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.3</version>
</dependency>
</dependencies>
<build>
<finalName>fetch</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>theMainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/houjinxin/fetch.git
git@gitee.com:houjinxin/fetch.git
houjinxin
fetch
fetch
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385