Vojtech Szocs has uploaded a new change for review. Change subject: build: Add maven-antrun-plugin to root POM's pluginManagement ......................................................................
build: Add maven-antrun-plugin to root POM's pluginManagement This patch allows child projects to utilize maven-antrun-plugin with ant-contrib extension (expands default Ant functionality). Change-Id: Ib9af06e3f2cdd76cce058c87092acb56b1977afc Signed-off-by: Vojtech Szocs <[email protected]> --- M pom.xml 1 file changed, 23 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/10/33710/1 diff --git a/pom.xml b/pom.xml index 08454f4..c7af6f4 100644 --- a/pom.xml +++ b/pom.xml @@ -639,6 +639,29 @@ <version>2.8.1</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + <dependencies> + <dependency> + <groupId>ant-contrib</groupId> + <artifactId>ant-contrib</artifactId> + <version>1.0b3</version> + <exclusions> + <exclusion> + <groupId>ant</groupId> + <artifactId>ant</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.ant</groupId> + <artifactId>ant-nodeps</artifactId> + <version>1.8.1</version> + </dependency> + </dependencies> + </plugin> </plugins> </pluginManagement> <resources> -- To view, visit http://gerrit.ovirt.org/33710 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ib9af06e3f2cdd76cce058c87092acb56b1977afc Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Vojtech Szocs <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
