-
Sub-task
-
Resolution: Unresolved
-
Major
-
2.10.1.Final
Today we have commands to add/remove dependencies into a `pom.xml` :
project-add-dependencies project-remove-dependencies project-add-managed-dependencies project-remove-managed-dependencies
We need to same functionnalites but for plugins. Commands such as :
project-add-plugin-dependencies project-remove-plugin-dependencies
So a command like this :
project-add-plugin-dependencies org.codehaus.mojo:exec-maven-plugin:1.3.1
Would add the following to the pom.xml :
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3.1</version>
</plugin>
</plugins>
- is related to
-
FORGE-2056 Commands to add and remove plugins repository into pom.xml
-
- Open
-
- relates to
-
FORGE-766 Allow manipulation of maven plugins in a project
-
- Closed
-