我正在尝试开发一个maven插件,但当我使用@Parameter注释时,它不起作用。
我的依赖项:
...
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.3</version>
</dependency>
...
当我使用:
@Parameter (property = "resources")
protected String resources;
资源保持为空,当我用更改它时
/**
* @parameter expression="${resources}"
*/
protected String resources;
资源得到满足。我执行我的插件为:
mvn example:goal -Dresources=whatever
这是我的Mojo宣言:
@Mojo(name = "example", defaultPhase = LifecyclePhase.PROCESS_RESOURCES)
public class ExampleMojo extends AbstractMojo {
有什么想法吗?为什么会发生这种情况?我必须做些什么才能让这个注释按预期工作?
嗯,我有两个问题。其中一个原因是我造成的,另一个是在比这里安装的mvn新版本中解决的已知错误。
首先是我引起的问题:实际上我的Mojo声明是这样的:
/**
* my goal
*
* @goal example
* @phase process-sources
*/
@Mojo(name = "example", defaultPhase = LifecyclePhase.PROCESS_RESOURCES)
public class ExampleMojo extends AbstractMojo {
这使得我的插件工作,因为有@goal和@phase的评论。所以我以为@Mojo在做这项工作,但我错了。
第二个问题是这个已知的错误:http://jira.codehaus.org/browse/MNG-5346
有一些解决方案,比如在mojo的pom中添加maven插件-插件依赖项和一些描述符。但我选择将我的maven更新到3.2.3,并删除了注释注释(@goal和@phase),一切都开始按预期进行。
现在我的魔力是这样的:
@Mojo(name = "example", defaultPhase = LifecyclePhase.PROCESS_RESOURCES)
public class ExampleMojo extends AbstractMojo {
@Parameter(property = "resources")
protected String resources;
/**
* do something nice
* @throws MojoExecutionException
*/
public void execute() throws MojoExecutionException {
System.out.println(resources);
}
}
为了完整起见,这是我的pom:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.package</groupId>
<artifactId>example</artifactId>
<packaging>maven-plugin</packaging>
<version>0.1-SNAPSHOT</version>
<name>Maven Mojo</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<showDeprecation>true</showDeprecation>
<compilerArgument>-Xlint:all,-serial</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.3</version>
</dependency>
</dependencies>
</project>