如何使用maven

时间:2017-02-10 10:47:59

标签: java maven

我正在尝试将一堆.txt从远程服务器传输到我的本地计算机,作为我的maven构建的一部分。我正在使用maven-ant-run插件here。我注意到我只能传输一个文件而不是使用fileSet,并且远程服务器上的.txt文件数量会动态增加/减少,所以没有设定量的.txt文件所以我只是不能硬编码。有什么建议吗?

所以我试过给马车插件。这是我的pom配置:

          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>wagon-maven-plugin</artifactId>
            <version>1.0</version>
            <executions>
                <execution>
                    <id>execute-test-commands</id>
                    <phase>process-test-class</phase>
                    <goals>
                        <goal>download</goal>
                    </goals>
                    <configuration>
                        <url>scp://${scp.user}:${scp.password}@${scp.host}</url>
                        <fromDir>testOutput</fromDir>
                        <includes>*.txt</includes>
                        <toDir>src/test/resources/unit</toDir>
                    </configuration>
                </execution>
            </executions>
        </plugin>

这是我的输出:

[INFO] Downloading scp://*.*.net/testOutput/JOSE.txt to 

C:\Users\Hello\Desktop\AANewMaven\Access\src\test\resources\lua\kong\plugins\JOSE.txt ...
Executing command: scp -p -f "/testOutput/JOSE.txt"
Remote file permissions: 0664
Remote file size: 399
Remote filename: JOSE.txt
attempting to create parent directories for destination: JOSE.txt
Downloading: testOutput/JOSE.txt from scp://*.*.net

#

(我出于保密原因放置了*

0 个答案:

没有答案