Files
spring-integration/org.springframework.integration.samples/build.xml
Oleg Zhurakousky e8bc39d475 INT-655
1. Restructured samples to be independent from the main source tree and to be Maven-compatible
2. Modified the samples build.xml to reflect on the new structure of samples
3. Added README file
2009-07-01 00:00:50 +00:00

31 lines
922 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="org.springframework.integration.samples">
<property file="${basedir}/../build.properties" />
<import file="${basedir}/../build-spring-integration/package-bundle.xml" />
<import file="${basedir}/../build-spring-integration/generate-pom.xml" />
<import file="${basedir}/../spring-build/standard/default.xml" />
<target name="package" depends="package-bundle.package">
<mkdir dir="${package.output.dir}/samples" />
<copy todir="${package.output.dir}/samples">
<fileset dir="${basedir}">
<include name="cafe/**" />
<include name="errorhandling/**"/>
<include name="helloworld/**"/>
<include name="jms/**"/>
<include name="oddeven/**"/>
<include name="quote/**"/>
<include name="ws/**"/>
<include name="xml/**"/>
<include name="pom.xml"/>
<include name="README.txt"/>
</fileset>
</copy>
</target>
</project>