我希望使用rpm-maven-plugin从ftp到rpm包装5 GB资源。
是否可以使用maven下载ftp目录? 如果是这样,是否可以使用settings.xml中的身份验证用户名和密码?
答案 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>
...