vmassol 01/04/09 01:37:51
Modified: cactus/conf/sample/build build.xml
Log:
cactus to commons-cactus + moved license to root dir
Revision Changes Path
1.3 +3 -15 jakarta-commons-sandbox/cactus/conf/sample/build/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/cactus/conf/sample/build/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.xml 2001/04/07 13:23:37 1.2
+++ build.xml 2001/04/09 08:37:50 1.3
@@ -59,7 +59,7 @@
<!-- Generic project properties -->
<property name="project.fullname" value="Cactus Sample"/>
<property name="project.version" value="@version@"/>
- <property name="project.name" value="cactus-sample"/>
+ <property name="project.name" value="commons-cactus-sample"/>
<!-- Miscellaneous settings -->
<property name="year" value="@year@"/>
@@ -91,6 +91,7 @@
<!-- Destination locations for the build (relative to the basedir as -->
<!-- specified in the basedir attribute of the project tag) -->
<property name="out.dir" value="out"/>
+ <property name="out.dist.dir" value="${out.dir}/dist"/>
<property name="out.lib.dir" value="${out.dir}/lib"/>
<property name="out.test.dir" value="${out.dir}/test"/>
<property name="out.src.dir" value="${out.dir}/src"/>
@@ -108,8 +109,7 @@
<!-- The full sources of Cactus Sample in a zip file -->
<property name="final.src.name"
value="${out.dir}/${project.name}[EMAIL PROTECTED]@.zip"/>
- <!-- The Cactus Sample documentation in a zip : javadoc + other
- READMEs. -->
+ <!-- The Cactus Sample documentation in a zip : javadoc -->
<property name="final.doc.name"
value="${out.dir}/${project.name}[EMAIL PROTECTED]@.zip"/>
<!--
@@ -133,9 +133,6 @@
<include name="**/*.xml"/>
<include name="**/*.properties"/>
- <!-- Other misc files -->
- <include name="**/license.apl"/>
-
</patternset>
<!-- All non java files in the src directory -->
@@ -146,9 +143,6 @@
<include name="**/*.xml"/>
<include name="**/*.properties"/>
- <!-- Other misc files -->
- <include name="**/license.apl"/>
-
</patternset>
<!--
@@ -246,9 +240,6 @@
<exclude name="**/*.xml"/>
<exclude name="**/*.properties"/>
- <!-- Misc files -->
- <exclude name="**/license.apl"/>
-
<classpath>
<pathelement path="${java.class.path}"/>
<pathelement location="${servlet.jar}"/>
@@ -381,9 +372,6 @@
<!-- Generate the documentation -->
<target name="doc" depends="prepare-doc">
-
- <!-- Add the README -->
- <copy file="README" tofile="${out.doc.dir}/README"/>
<!-- Create the zipped documentation -->
<zip zipfile="${final.doc.name}" basedir="${out.doc.dir}"/>