所以我安装了这个插件,用于通过ftp发送文件。不幸的是我必须使用这个版本。这是pom.xml中的代码
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>ftp</id>
<phase>package</phase>
<configuration>
<target>
<ftp action="send"
server="10.132.30.179"
remotedir="subsystems"
userid="radio"
password="oss"
depends="yes"
verbose="yes">
<fileset dir="C:\Users\Michal\Downloads\web-framework">
<include name="*.txt"/>
</fileset>
</ftp>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.1</version>
</dependency>
</dependencies>
</plugin>
当我调用“mvn package&#39;”时,一切正常。包是构建的,没有错误。但是什么都没有发生。这是我在构建阶段得到的东西。
[INFO] --- maven-antrun-plugin:1.4:run (ftp) @ dist ---
project.artifactId
[INFO] Executing tasks
[INFO] Executed tasks
我的代码有问题吗?