We have tried using ant ftp tasks, but could not get it working like shown below:

<artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <id>ftp</id>
                    <phase>generate-resources</phase>
                    <configuration>
                        <target>
                            <ftp action="get" server="192.168.168.xxx" userid="anonymous"
                                password="anonymous">
                                <fileset dir="Folder/tools/toolX">
                                    <include name="**/*.*" />
                                </fileset>
                            </ftp>
                        </target>
                    </configuration>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
                ....

Thanks in advance!

link|improve this question
why does it not work? any exceptions/ error messages? – oers Jan 5 at 14:25
feedback

1 Answer

up vote 0 down vote accepted

maven-antrun-plugin provides ant runtime with base set of tasks only. For other tasks you need to provide them as dependencies (with their dependencies, if needed). 'ftp' case is used as an example of this problem on maven's site, you may find complete example there: http://maven.apache.org/plugins/maven-antrun-plugin/examples/customTasks.html

link|improve this answer
This is how it works :-) Thank you – manu Jan 9 at 12:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.