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
This commit is contained in:
Oleg Zhurakousky
2009-07-01 00:00:50 +00:00
parent a09ee058ec
commit e8bc39d475
97 changed files with 623 additions and 382 deletions

View File

@@ -1,16 +1,30 @@
<?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"/>
<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"/>
<mkdir dir="${package.output.dir}/samples" />
<copy todir="${package.output.dir}/samples">
<fileset dir="${basedir}/scripts"/>
<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>