41 lines
1.9 KiB
XML
41 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project name="publish-spring-framework" xmlns:maven="antlib:org.apache.maven.artifact.ant">
|
|
|
|
<property file="${basedir}/../build.properties"/>
|
|
<import file="${basedir}/../spring-build/multi-bundle/default.xml"/>
|
|
|
|
<path id="modules-with-code-artifacts">
|
|
<pathelement location="${basedir}/../org.springframework.integration"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.security"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.adapter"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.xml"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.event"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.file"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.http"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.httpinvoker"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.jms"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.mail"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.rmi"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.stream"/>
|
|
<pathelement location="${basedir}/../org.springframework.integration.ws"/>
|
|
</path>
|
|
|
|
<path id="modules-with-only-pom-artifacts">
|
|
<pathelement location="../spring-integration-parent"/>
|
|
</path>
|
|
|
|
|
|
<target name="publish-maven-central-spring" depends="publish-maven-central-only-pom-spring">
|
|
<all-bundles target="publish-maven-central-code-artifacts" buildpathRef="modules-with-code-artifacts"/>
|
|
</target>
|
|
|
|
<target name="publish-maven-central-only-pom-spring">
|
|
<all-bundles target="publish-maven-central-only-pom-artifacts"
|
|
buildpathRef="modules-with-only-pom-artifacts"/>
|
|
</target>
|
|
|
|
|
|
|
|
|
|
</project>
|