Updated to use spring-build-0.11.0 and package up a release
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="build-spring-integration" default="precommit">
|
||||
|
||||
<target name="precommit" depends="clean,clean-integration,jar,test"/>
|
||||
|
||||
<path id="bundles">
|
||||
<pathelement location="../spring-integration-core"/>
|
||||
<pathelement location="../spring-integration-samples"/>
|
||||
@@ -11,4 +9,29 @@
|
||||
<property file="${basedir}/../build.properties"/>
|
||||
<import file="../spring-build/multi-bundle/default.xml"/>
|
||||
|
||||
|
||||
<target name="precommit" depends="clean,clean-integration,jar,test"/>
|
||||
|
||||
<target name="package.pre">
|
||||
<delete quiet="true" dir="${package.output.dir}"/>
|
||||
<mkdir dir="${package.output.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="package.post" depends="resources, reference">
|
||||
<mkdir dir="${target.dir}"/>
|
||||
<zip destfile="${package.output.file}" basedir="${package.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="resources">
|
||||
<copy todir="${package.output.dir}">
|
||||
<fileset dir="${basedir}/resources"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="reference">
|
||||
<ant dir="${basedir}/../spring-integration-reference" target="reference" inheritAll="false">
|
||||
<property name="target.dir" value="${package.output.dir}/docs"/>
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
@@ -1,3 +1,6 @@
|
||||
version=0.5.0
|
||||
version=1.0.0
|
||||
release.type=integration
|
||||
natural.name=spring-integration
|
||||
bucket.basename=springsource.com
|
||||
ivy.cache.dir=${basedir}/../ivy-cache
|
||||
integration.repo.dir=${basedir}/../integration-repo
|
||||
integration.repo.dir=${basedir}/../integration-repo
|
||||
|
||||
@@ -14,6 +14,11 @@
|
||||
<include file="${spring.build.dir}/common/default-ivy-configurations.xml"/>
|
||||
</configurations>
|
||||
|
||||
<publications>
|
||||
<artifact name="${ant.project.name}"/>
|
||||
<artifact name="${ant.project.name}-sources" type="src" ext="jar"/>
|
||||
</publications>
|
||||
|
||||
<dependencies>
|
||||
<dependency org="javax.jms" name="jms" rev="1.1" conf="compile->default"/>
|
||||
<dependency org="org.junit" name="junit" rev="4.4" conf="test->default"/>
|
||||
|
||||
@@ -14,6 +14,11 @@
|
||||
<include file="${spring.build.dir}/common/default-ivy-configurations.xml"/>
|
||||
</configurations>
|
||||
|
||||
<publications>
|
||||
<artifact name="${ant.project.name}"/>
|
||||
<artifact name="${ant.project.name}-sources" type="src" ext="jar"/>
|
||||
</publications>
|
||||
|
||||
<dependencies>
|
||||
<dependency org="javax.jms" name="jms" rev="1.1" conf="compile->default"/>
|
||||
<dependency org="org.junit" name="junit" rev="4.4" conf="test->default"/>
|
||||
|
||||
Reference in New Issue
Block a user