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

master
Mark Pollack 16 years ago
parent 6f64ce8147
commit 7ad5dd1bd6
  1. 9
      build-spring-framework/publish-maven.xml

@ -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 -->

Loading…
Cancel
Save