maven/plugin开发:插件版本不匹配导致的报错:Method: ‘name’ not found in class in ParameterAnnotationContent

问题描述

今天在写一个maven插件的时候报了错,意思就是插件类参数注释@Parameter中没有name这个方法(org.apache.maven.plugins.annotations.Parameter):

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-plugin-plugin:3.2:
descriptor (default-descriptor) on project swift2thrift-maven-plugin: Error extr
acting plugin descriptor: ‘Method: ‘name’ not found in class: ‘class org.apache.
maven.tools.plugin.annotations.datamodel.ParameterAnnotationContent’’ -> [Help 1]

我在代码中的确使用了name。下面是我的代码片段

public class Swift2ThriftMojo extends AbstractMojo {
	private static final String SPLIT_REGEX = "\\s;,";
	/**
	 * <Swift-class-name...>
	 */
	@Parameter(name = "classNames",required=true)
    private List<String>  swiftClasseNames;
    //.....
}

原因分析

这怎么可能?!
如果annotation中没有定义name,我这代码编译都通不过呀。所以一定不是代码的问题。
仔细看看报错位置的错误信息(如下截图),发现maven在解析<packaging>maven-plugin</packaging>时使用的maven-plugin-plugin版本是3.2

这里写图片描述

而我用的maven-plugin-annotations版本是3.5

<properties>
	<dep.maven-api.version>3.5.0</dep.maven-api.version>
</properties>
<!-- maven -->
<dependency>
	<groupId>org.apache.maven</groupId>
	<artifactId>maven-plugin-api</artifactId>
	<version>${dep.maven-api.version}</version>
</dependency>
<dependency>
	<groupId>org.apache.maven</groupId>
	<artifactId>maven-model</artifactId>
	<version>${dep.maven-api.version}</version>
</dependency>
<dependency>
	<groupId>org.apache.maven</groupId>
	<artifactId>maven-artifact</artifactId>
	<version>${dep.maven-api.version}</version>
</dependency>
<dependency>
	<groupId>org.apache.maven.plugin-tools</groupId>
	<artifactId>maven-plugin-annotations</artifactId>
	<version>3.5</version>
</dependency>

到这里问题就清楚了:
maven默认使用的maven-plugin-plugin插件版本过低,无法识别高版本annotation新增加的name方法。

解决方案

方案1

去掉代码中的name定义,把上面的maven插件开发依赖的相关库版本降到3.2.5/3.2。

方案2

指定使用maven-plugin-plugin版本为与maven插件开发依赖的相关库版本匹配的版本,比如3.5
在pom.xml加入如下代码

		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-plugin-plugin</artifactId>
					<version>3.5</version>
				</plugin>
			</plugins>
		</pluginManagement>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

10km

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值