使用maven

时间:2015-06-28 08:38:00

标签: maven ftp maven-3 wget

我有这个正常工作的命令,

但我想用maven运行它。

  

wget -r ftp://user:passwors@foo.bar.com/DIR_DUMP/ *。dmp

任何人都可以告诉我pom.xml的外观吗?

B.T.W我试过这个pom,但我无法获得大文件:

<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>
        <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>

0 个答案:

没有答案