Here are steps that I came up. Using these steps, you will be able to
create Eclipse project files in order to get everything imported into
Eclipse for development. These steps could probably be extended in order to
build jar files for the FtpServer project.
--------------
Software used:
java -version
java version "1.6.0_01"
Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
Java HotSpot(TM) Server VM (build 1.6.0_01-b06, mixed mode)
mvn --version
Maven version: 2.0.8
Java version: 1.6.0_01
OS name: "linux" version: "2.6.18-53.1.13.el5pae" arch: "i386" Family:
"unix"
--------------
Compile steps:
1. Check out FtpServer trunk
svn co
http://svn.apache.org/repos/asf/mina/ftpserver/trunk/ftpserver
2. cd ftpserver/ftplet-api
3. mvn install
3. mvn eclipse:eclipse
4. cd ../commons-net-2
5. mvn -Dmaven.test.skip=true clean package
6. mvn eclipse:eclipse
7. mvn install:install-file -DgroupId=commons-net -DartifactId=commons-net
-Dversion=2.0.0-SNAPSHOT -Dpackaging=jar -Dfile=target/commons-
net-2.0.0-SNAPSHOT.jar
8. cd ../core
9. mvn -Dmaven.test.skip=true clean package
10. mvn install:install-file
-DgroupId=org.apache.ftpserver-DartifactId=ftpserver-core -Dversion=
1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=target/ftpserver-
core-1.0.0-SNAPSHOT.jar
11. mvn eclipse:eclipse
12. cd ../admin-gui
13. mvn eclipse:eclipse
14. Import projects into Eclipse.
Hope this helps...