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
31 lines
922 B
XML
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>
|
|
|
|
|
|
|