如何使用maven从ftp下载文件夹

时间:2015-03-19 14:08:06

标签: maven ftp rpm-maven-plugin

我希望使用rpm-maven-plugin从ftp到rpm包装5 GB资源。

是否可以使用maven下载ftp目录? 如果是这样,是否可以使用settings.xml中的身份验证用户名和密码?

2 个答案:

答案 0 :(得分:1)

请考虑使用Maven Wagon Plugin。它也为FTP提供支持。

答案 1 :(得分:0)

用于递归复制ftp目录的最佳决策是

...
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.8</version>
                <configuration>
                    <target>
                        <ftp action="get"
                             server="192.168.1.1"
                             remotedir="remoteDir"
                             userid="anonymous"
                             password="anonymous">
                            <fileset dir="${project.build.directory}">
                                <include name="**/*.*"/>
                            </fileset>
                        </ftp>
                    </target>
                </configuration>
                <executions>
                    <execution>
                        <id>download-from-ftp</id>
                        <phase>generate-resources</phase>

                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
                <dependencies>
                    <dependency>
                        <groupId>commons-net</groupId>
                        <artifactId>commons-net</artifactId>
                        <version>1.4.1</version>
                    </dependency>
                    <dependency>
                        <groupId>org.apache.ant</groupId>
                        <artifactId>ant-commons-net</artifactId>
                        <version>1.8.1</version>
                    </dependency>
                </dependencies>
            </plugin>
...