Book Image

Mastering Spring Application Development

By : Anjana Mankale
Book Image

Mastering Spring Application Development

By: Anjana Mankale

Overview of this book

Table of Contents (19 chapters)
Mastering Spring Application Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Maven dependency


In order to create an FTP application using Spring integration framework, add the following dependency to the pom.xml file in your Maven project. The main packages are Spring Integration test and Spring Integration FTP. The libraries can be downloaded from the Maven repository or can be added to the project's pom.xml file.

Here are the Maven dependencies that need to be added to the pom.xml file to start developing applications with the Spring Integration FTP package:

<dependency>
  <groupId>org.springframework.integration</groupId>
  <artifactId>spring-integration-ftp</artifactId>
  <version>4.0.0.RELEASE</version>
  <scope>compile</scope>
</dependency>

<dependency>
  <groupId>org.springframework.integration</groupId>
  <artifactId>spring-integration-test</artifactId>
  <version>4.0.0.RELEASE</version>
  <scope>test</scope>
</dependency>

<dependency...