diff options
author | carnold <[email protected]> | 2007-07-31 00:23:58 +0000 |
---|---|---|
committer | carnold <[email protected]> | 2007-07-31 00:23:58 +0000 |
commit | 07c6778db4f5ad7e790193801834d48d90cfaad0 (patch) | |
tree | ff59335856e578d30b6898dd3d10caf2577bf106 /ant-prologue.xml | |
parent | 6b4539391a1db90f755fb74196c909925aa609d8 (diff) |
Bug 1761534: Add gump.xml for a no-ivy option
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/ant-contrib/trunk@129 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'ant-prologue.xml')
-rw-r--r-- | ant-prologue.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ant-prologue.xml b/ant-prologue.xml new file mode 100644 index 0000000..0f5164f --- /dev/null +++ b/ant-prologue.xml @@ -0,0 +1,33 @@ +<!--
+ Licensed to the Ant-Contrib Project under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The Ant-Contrib Project licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+ <property file="build.properties" />
+
+ <property name="root.dir" location="." />
+ <property name="src.dir" location="src" />
+ <property name="src.java.dir" location="${src.dir}/java" />
+ <property name="test.dir" location="test" />
+ <property name="test.src.dir" location="${test.dir}/src" />
+ <property name="test.resources.dir" location="${test.dir}/resources" />
+ <property name="docs.dir" location="docs" />
+ <property name="target.dir" location="target" />
+ <property name="target.classes.dir" location="${target.dir}/classes" />
+ <property name="target.test-classes.dir" location="${target.dir}/test-classes" />
+ <property name="target.docs.dir" location="${target.dir}/docs" />
+ <property name="dist.dir" location="dist" />
+ <property name="target.stage.dir" location="${target.dir}/stage" />
+
|