Use maven ant task to install parent pom instead of using maven from the command line as a workaround for http://jira.codehaus.org/browse/MANTTASKS-87

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@884 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Mark Pollack
2009-03-31 01:51:01 +00:00
parent 0309a3991a
commit 4b4a341c36
+7 -2
View File
@@ -15,14 +15,19 @@
</condition>
<!-- top level targets -->
<target name="publish-maven-central-only-pom-artifacts" depends="publish-only-pom-windows,publish-only-pom-unix">
<!-- top level targets -->
<target name="publish-maven-central-only-pom-artifacts" depends="publish-only-pom-windows,publish-only-pom-unix">
</target>
<target name="publish-maven-central-code-artifacts" depends="publish-code-windows,publish-code-unix">
</target>
<target name="install-pom" depends="maven.init">
<maven:install>
<pom file="${local.pom.output.file}"/>
</maven:install>
</target>
<!-- Supporting targets -->