我想将 settings.xml 配置文件参数注入 Java 类。我尝试使用 maven-annotation-plugin 但值为 null。我想知道这是不是因为这个插件是为 Mojo 设计的
Setting.xml 片段
<profiles>
<profile>
<id>APP_NAME</id>
<properties>
<test.email>USER_EMAIL</test.email>
<test.password>USER_PASSWORD</test.password>
</properties>
</profile>
</profiles>
在班上
@Parameter(defaultValue = "test.email", readonly = true)
private String userEmail;
@Parameter(defaultValue = "test.password", readonly = true)
private String userPassword;