[BAEL-10840] - Moved FTP related code back to libraries module

This commit is contained in:
amit2103 2018-12-16 17:11:21 +05:30
parent ea25895da1
commit 5174d9495b
7 changed files with 15 additions and 9 deletions

View File

@ -18,4 +18,3 @@
- [Apache Commons Collections MapUtils](http://www.baeldung.com/apache-commons-map-utils) - [Apache Commons Collections MapUtils](http://www.baeldung.com/apache-commons-map-utils)
- [Histograms with Apache Commons Frequency](http://www.baeldung.com/apache-commons-frequency) - [Histograms with Apache Commons Frequency](http://www.baeldung.com/apache-commons-frequency)
- [An Introduction to Apache Commons Lang 3](https://www.baeldung.com/java-commons-lang-3) - [An Introduction to Apache Commons Lang 3](https://www.baeldung.com/java-commons-lang-3)
- [Implementing a FTP-Client in Java](http://www.baeldung.com/java-ftp-client)

View File

@ -83,12 +83,6 @@
<version>${org.hamcrest.java-hamcrest.version}</version> <version>${org.hamcrest.java-hamcrest.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.mockftpserver</groupId>
<artifactId>MockFtpServer</artifactId>
<version>${mockftpserver.version}</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
@ -110,7 +104,6 @@
<commons-net.version>3.6</commons-net.version> <commons-net.version>3.6</commons-net.version>
<hamcrest-all.version>1.3</hamcrest-all.version> <hamcrest-all.version>1.3</hamcrest-all.version>
<common-math3.version>3.6.1</common-math3.version> <common-math3.version>3.6.1</common-math3.version>
<mockftpserver.version>2.7.1</mockftpserver.version>
</properties> </properties>
</project> </project>

View File

@ -65,6 +65,7 @@
- [Guide to JMapper](http://www.baeldung.com/jmapper) - [Guide to JMapper](http://www.baeldung.com/jmapper)
- [Exactly Once Processing in Kafka](https://www.baeldung.com/kafka-exactly-once) - [Exactly Once Processing in Kafka](https://www.baeldung.com/kafka-exactly-once)
- [An Introduction to SuanShu](https://www.baeldung.com/suanshu) - [An Introduction to SuanShu](https://www.baeldung.com/suanshu)
- [Implementing a FTP-Client in Java](http://www.baeldung.com/java-ftp-client)
The libraries module contains examples related to small libraries that are relatively easy to use and does not require any separate module of its own. The libraries module contains examples related to small libraries that are relatively easy to use and does not require any separate module of its own.

View File

@ -55,6 +55,11 @@
<artifactId>commons-lang3</artifactId> <artifactId>commons-lang3</artifactId>
<version>${commons-lang.version}</version> <version>${commons-lang.version}</version>
</dependency> </dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>${commons-net.version}</version>
</dependency>
<dependency> <dependency>
<groupId>tec.units</groupId> <groupId>tec.units</groupId>
<artifactId>unit-ri</artifactId> <artifactId>unit-ri</artifactId>
@ -664,6 +669,12 @@
<version>${derive4j.version}</version> <version>${derive4j.version}</version>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency>
<groupId>org.mockftpserver</groupId>
<artifactId>MockFtpServer</artifactId>
<version>${mockftpserver.version}</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<repositories> <repositories>
@ -888,6 +899,8 @@
<maven-bundle-plugin.version>3.3.0</maven-bundle-plugin.version> <maven-bundle-plugin.version>3.3.0</maven-bundle-plugin.version>
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
<derive4j.version>1.1.0</derive4j.version> <derive4j.version>1.1.0</derive4j.version>
<mockftpserver.version>2.7.1</mockftpserver.version>
<commons-net.version>3.6</commons-net.version>
</properties> </properties>
</project> </project>