解决方案一:降低antrun插件版本,如: <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> 解决方案二:降低maven版本,如:
[INFO] --- maven-antrun-plugin:1.7:run (create-testdirs) @ hadoop-mapreduce-examples --- [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ hadoop-mapreduce-examples --- [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ hadoop-mapreduce-examples --- ...
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <!-- 执行打包操作时执行的任务 --> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo> 执行一些 Ant 任务:</ec...
<maven-invoker-plugin.version>3.2.2</maven-invoker-plugin.version> <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version> <maven-shade-plugin.version>3....
mvn [plugin-name]:[goal-name] 1. 例如:一个 Java 项目可以使用 Maven 编译器插件来编译目标,通过运行以下命令编译 mvn compiler:compile 1. 插件有哪些类型 Maven 提供以下两种类型插件: 以下是一些常见的插件列表: 例如 我们使用 maven-antrun-plugin 插件在例子中来在控制台打印数据。现在在 C:\MVN\project...
The maven-antrun-plugin has only one goal, run. This allows Maven to run Ant tasks. To do so, there must be an existing project and maven-antrun-plugin must have its<target> tag configured (although it would still execute without the <target> tag, it would not do anything). Below is...
maven常用插件--maven-antrun-plugin maven-antrun-plugin为maven提供了ant功能。它只有一个goal,即: antrun:run 执行ant任务。 使用: <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.x</version>...
<versionsPropertyName>。包含所有依赖项版本列表的 property 的名称。这用于从文件名中删除版本。默认为maven.project.dependencies.versions。 示例 下面是一个使用maven-antrun-plugin插件的模板: <project>[...]<build><plugins><plugin><artifactId>maven-antrun-plugin</artifactId><version>3.0.0</version><exec...
</plugin> </plugins> </build> 这里phase是一个maven生命周期中的一个phase,maven-antrun-plugin的一个最有用的goal就是run (还有一个goal是help)。 剩下的就是configuration的配置了。 maven-antrun-plugin可用的配置不太多(在1.7上只有7个有效的配置): ...
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.8:run (compile) on project my-test-app: An Ant BuildException has occured: The following error occurred while executing this line: /home/dan/scriptdef-test/build...