三个问题按重要性降序排列 - 链接就可以了。
我需要在我的 Maven 插件中读取某些 Maven 设置,例如代理、服务器。我如何从我的插件中读取它们。我可以从 .m2/settings.xml 文件中读取,但我认为必须有一种更简单的方法(一些 API 已经做到了)。
我从开发人员食谱中看到有一门课
org.apache.maven.project.MavenProject
我需要什么依赖才能在我的插件中可用 - 我觉得这会很好。是否可以拥有我自己的财产
设置.xml
例如说<users>
<user>
<username>user_name1</username>
<password>encrypted_password</password>
</user>
</users>如何 ?
PS:我是初学者。
更新 1
在通过 Settings.xml 注入 POM 属性之后,我能够创建和读取自定义属性。但是,我希望配置类似于cargo提供的配置。例如
<servers>
<server>
<id>tomcat7_local</id>
<configuration>
<cargo.hostname>localhost</cargo.hostname>
<cargo.remote.uri>http://localhost:8080/manager/text</cargo.remote.uri>
<cargo.remote.username>my_username</cargo.remote.username>
<cargo.remote.password>my_password</cargo.remote.password>
<cargo.servlet.port>8080</cargo.servlet.port>
</configuration>
</server>
<server>
<id>tomcat6_local</id>
<configuration>
<cargo.hostname>localhost</cargo.hostname>
<cargo.remote.uri>http://localhost:8080/manager</cargo.remote.uri>
<cargo.remote.username>my_username</cargo.remote.username>
<cargo.remote.password>my_password</cargo.remote.password>
<cargo.servlet.port>8080</cargo.servlet.port>
</configuration>
</server>
</servers>
我如何做到这一点。对我的第三个问题有一种解决方法,不确定它是否正确。
编辑
谢谢乔丹002!我知道我可以拥有多个配置文件,但我不知道如何使用它们。通过这种方式,通过配置文件,我可以设置变量的值,或者通过说类似的话将值注入我的插件
@Parameter(alias = "cargo.hostname") 私有字符串主机名;但正如我所见,对于货物插件,它所需的所有定义如下
<servers>
<server>
<id>someId</id>
<configuration>
<!-- Configurations are placed here -->
</configuration>
</servers>
类似,或者可能不那么类似,因为这里没有配置
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>My_proxy_host</host>
<port>My_proxy_port</port>
</proxy>
</proxies>
是我可以放置 maven 使用的代理信息的地方。现在,我不想在某些配置文件中重新定义它,也不想解析这个文件来获取信息。
此外,我想做货物正在做的事情。它让我可以在服务器和项目的 pom 中编写所有配置,我只需要执行以下操作
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.server.settings>tomcat7_local</cargo.server.settings>
</properties>
</configuration>
<deployer>
<type>remote</type>
</deployer>
<deployables>
<deployable>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<type>war</type>
<properties>
<context>${project.artifactId}</context>
</properties>
</deployable>
</deployables>
</configuration>
</plugin>
cargo 会获取我为tomcat7_local定义的配置,无需为此编写配置文件。