Juan Hernandez has uploaded a new change for review. Change subject: core: Make antrun plugin version explicit ......................................................................
core: Make antrun plugin version explicit Currently we don't explicitly specify the version of the maven ant plugin that we use. This means that we use an old version. This patch udpates to version 1.7 and makes it explicit in the parent POM. Change-Id: Id3297da17facdcf72878ecb2891d142a54634dee Signed-off-by: Juan Hernandez <[email protected]> (cherry picked from commit 913b958cac7176f965c16524a69e505f7ebe3e46) --- M ear/pom.xml M pom.xml 2 files changed, 9 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/46/12846/1 diff --git a/ear/pom.xml b/ear/pom.xml index cc8d401..c18a200 100644 --- a/ear/pom.xml +++ b/ear/pom.xml @@ -22,7 +22,7 @@ <properties> <earDirectory>${project.build.directory}/${project.build.finalName}</earDirectory> - <backendConfFiles>${project.parent.basedir}/backend/manager/conf</backendConfFiles> + <backendConfFiles>${basedir}/../backend/manager/conf</backendConfFiles> </properties> <dependencies> @@ -409,9 +409,9 @@ </goals> <configuration> <tasks> - <echo>*** Copying ${project.parent.basedir}/deployment/modules to ${jbossHome}/modules</echo> + <echo>*** Copying ${basedir}/../deployment/modules to ${jbossHome}/modules</echo> <copy todir="${jbossHome}/modules" verbose="true" overwrite="true"> - <fileset dir="${project.parent.basedir}/deployment/modules"> + <fileset dir="${basedir}/../deployment/modules"> <include name="org/postgresql/**"/> </fileset> </copy> diff --git a/pom.xml b/pom.xml index f96ff46..b4aa8c5 100644 --- a/pom.xml +++ b/pom.xml @@ -484,6 +484,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ear-plugin</artifactId> <version>2.8</version> </plugin> -- To view, visit http://gerrit.ovirt.org/12846 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id3297da17facdcf72878ecb2891d142a54634dee Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: engine_3.2 Gerrit-Owner: Juan Hernandez <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
