summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattinger <[email protected]>2006-08-22 19:04:39 +0000
committermattinger <[email protected]>2006-08-22 19:04:39 +0000
commit578b3ee252eb476358e38f200f79d02eda395fae (patch)
treec42ef700d710d042c9f446aca83e4f6ea9915bdf
parent72638ea44a424eea066d2d7c5232938650dec5fd (diff)
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@38 32d7a393-a5a9-423c-abd3-5d954feb1f2f
-rw-r--r--build.xml8
-rw-r--r--ivy.xml2
2 files changed, 8 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 7c48866..53b1100 100644
--- a/build.xml
+++ b/build.xml
@@ -47,6 +47,9 @@
<ivy:cachepath id="compile.classpath" type="jar" conf="provided" />
<ivy:cachepath id="runtime.classpath" type="jar" conf="default" />
<ivy:cachepath id="test.classpath" type="jar" conf="test" />
+ <ivy:cachefileset setid="compile.fileset" type="jar" conf="provided" />
+ <ivy:cachefileset setid="runtime.fileset" type="jar" conf="default" />
+ <ivy:cachefileset setid="test.fileset" type="jar" conf="test" />
</target>
<target name="compile" depends="classpath">
@@ -141,10 +144,13 @@
<mkdir dir="${target.stage.dir}" />
<mkdir dir="${target.stage.dir}/lib" />
- <copy todir="${target.stage.dir}/${project.name}">
+ <copy todir="${target.stage.dir}">
<fileset dir="${root.dir}" includes="README.txt" />
<fileset dir="${target.dir}" includes="docs/**/*" />
</copy>
+ <copy todir="${target.stage.dir}/lib" flatten="true">
+ <fileset refid="runtime.fileset" />
+ </copy>
</target>
<target name="zip" depends="dist-stage">
diff --git a/ivy.xml b/ivy.xml
index f226989..178d63c 100644
--- a/ivy.xml
+++ b/ivy.xml
@@ -27,7 +27,7 @@
<dependency org="apache"
name="commons-httpclient"
rev="3.0.1"
- conf="provided->default" />
+ conf="default->default" />
<dependency org="junit"
name="junit"
rev="3.8.1"