Browse Source

* Moved a bunch of Jars around in CVS.

* Moved a bunch of Jars around in dist image:
   excalibur-cli-*.jar -> dist/bin/lib
   excalibur-bzip2-*.jar -> dist/ext
   excalibur-tar-*.jar -> dist/ext
   excalibur-zip-*.jar -> dist/ext
* Added dependency on 'excalibur-bzip2' to archive 'antlib'.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272266 13f79535-47bb-0310-9956-ffa450edef68
master
adammurdoch 23 years ago
parent
commit
d7c5961f02
8 changed files with 23 additions and 23 deletions
  1. +2
    -3
      proposal/myrmidon/antlib.xml
  2. +18
    -20
      proposal/myrmidon/build.xml
  3. +0
    -0
      proposal/myrmidon/lib/bin/lib/excalibur-cli-1.0.jar
  4. +0
    -0
      proposal/myrmidon/lib/ext/excalibur-bzip2-1.0a.jar
  5. +0
    -0
      proposal/myrmidon/lib/ext/excalibur-tar-1.0a.jar
  6. +0
    -0
      proposal/myrmidon/lib/ext/excalibur-zip-1.0a.jar
  7. +3
    -0
      proposal/myrmidon/src/manifest/archive-manifest.mf
  8. +0
    -0
      proposal/myrmidon/tools/lib/LICENSE.jdepend.txt

+ 2
- 3
proposal/myrmidon/antlib.xml View File

@@ -37,9 +37,8 @@ Legal:
<pathelement location="../../lib/optional/junit.jar" /> <pathelement location="../../lib/optional/junit.jar" />
<pathelement location="../xdocs/lib/xdoclet.jar" /> <pathelement location="../xdocs/lib/xdoclet.jar" />
<pathelement location="../xdocs/lib/log4j-core.jar" /> <pathelement location="../xdocs/lib/log4j-core.jar" />
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
<fileset dir="${lib.dir}" includes="**/*.jar"/>
<fileset dir="tools/lib" includes="**/*.jar"/>
<pathelement path="${build.classes}" /> <pathelement path="${build.classes}" />
<pathelement path="${build.custom-tasks}" /> <pathelement path="${build.custom-tasks}" />
</path> </path>


+ 18
- 20
proposal/myrmidon/build.xml View File

@@ -71,16 +71,17 @@ Legal:


<property name="constants.file" value="org/apache/myrmidon/Constants.java"/> <property name="constants.file" value="org/apache/myrmidon/Constants.java"/>


<path id="tools.class.path">
<fileset dir="tools/lib" includes="**/*.jar"/>
<fileset dir="../xdocs/lib" includes="*.jar" />
</path>
<path id="project.class.path"> <path id="project.class.path">
<pathelement location="../../lib/optional/junit.jar" /> <pathelement location="../../lib/optional/junit.jar" />
<pathelement location="../xdocs/lib/xdoclet.jar" />
<pathelement location="../xdocs/lib/log4j-core.jar" />
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
<fileset dir="${lib.dir}" includes="**/*.jar"/>
<pathelement location="${build.classes}"/> <pathelement location="${build.classes}"/>
<!-- Need this to get tools.jar in the classpath --> <!-- Need this to get tools.jar in the classpath -->
<pathelement path="${java.class.path}"/> <pathelement path="${java.class.path}"/>
<path refid="tools.class.path"/>
</path> </path>


<!-- Main target --> <!-- Main target -->
@@ -205,7 +206,7 @@ Legal:
<property name="custom-package-dir" value="${build.custom-tasks}/org/apache/myrmidon/build"/> <property name="custom-package-dir" value="${build.custom-tasks}/org/apache/myrmidon/build"/>
<mkdir dir="${build.custom-tasks}"/> <mkdir dir="${build.custom-tasks}"/>
<javac srcdir="src/make" destdir="${build.custom-tasks}"> <javac srcdir="src/make" destdir="${build.custom-tasks}">
<classpath refid="project.class.path"/>
<classpath refid="tools.class.path"/>
</javac> </javac>


<copy file="${manifest.dir}/ant-descriptor.j" todir="${custom-package-dir}"/> <copy file="${manifest.dir}/ant-descriptor.j" todir="${custom-package-dir}"/>
@@ -220,7 +221,7 @@ Legal:
classname="org.apache.myrmidon.build.AntlibDescriptorTask"> classname="org.apache.myrmidon.build.AntlibDescriptorTask">
<classpath> <classpath>
<pathelement location="${build.custom-tasks}"/> <pathelement location="${build.custom-tasks}"/>
<path refid="project.class.path"/>
<path refid="tools.class.path"/>
</classpath> </classpath>
</taskdef> </taskdef>
</target> </target>
@@ -558,6 +559,7 @@ Legal:
<classpath> <classpath>
<pathelement location="${build.classes}"/> <pathelement location="${build.classes}"/>
<path refid="project.class.path"/> <path refid="project.class.path"/>
<path refid="tools.class.path"/>
</classpath> </classpath>


<exclude name="**/SmbFileSystemTestCase.java" unless="jcifs.present"/> <exclude name="**/SmbFileSystemTestCase.java" unless="jcifs.present"/>
@@ -659,8 +661,9 @@ Legal:


<!-- Prepare the project tests --> <!-- Prepare the project tests -->
<antlib-descriptor libName="unittests" <antlib-descriptor libName="unittests"
destdir="${gen.dir}"
classpathref="project.class.path">
destdir="${gen.dir}">
<classpath refid="project.class.path"/>
<classpath refid="tools.class.path"/>
<fileset dir="src/test"> <fileset dir="src/test">
<include name="org/apache/antlib/**"/> <include name="org/apache/antlib/**"/>
<include name="org/apache/myrmidon/framework/**"/> <include name="org/apache/myrmidon/framework/**"/>
@@ -716,7 +719,7 @@ Legal:
<!-- thats why you are required to define do.checkstyle property to generate the report --> <!-- thats why you are required to define do.checkstyle property to generate the report -->
<taskdef name="checkstyle" <taskdef name="checkstyle"
classname="com.puppycrawl.tools.checkstyle.CheckStyleTask"> classname="com.puppycrawl.tools.checkstyle.CheckStyleTask">
<classpath refid="project.class.path"/>
<classpath refid="tools.class.path"/>
</taskdef> </taskdef>
<checkstyle <checkstyle
lcurlyType="nl" lcurlyType="nl"
@@ -767,7 +770,7 @@ Legal:


<!-- this invocation of jdepend requires the CVS version of ant for the xml format --> <!-- this invocation of jdepend requires the CVS version of ant for the xml format -->
<jdepend outputfile="${build.dir}/jdepend-results.xml" format="xml" fork="yes"> <jdepend outputfile="${build.dir}/jdepend-results.xml" format="xml" fork="yes">
<classpath refid="project.class.path"/>
<classpath refid="tools.class.path"/>
<sourcespath> <sourcespath>
<path refid="java.src" /> <path refid="java.src" />
</sourcespath> </sourcespath>
@@ -824,25 +827,20 @@ Legal:


<copy todir="${dist.bin}"> <copy todir="${dist.bin}">
<fileset dir="${build.bin}"/> <fileset dir="${build.bin}"/>
<fileset dir="${lib.dir}/bin"/>
</copy> </copy>


<copy todir="${dist.lib}"> <copy todir="${dist.lib}">
<fileset dir="${build.lib}"/> <fileset dir="${build.lib}"/>
<fileset dir="${lib.dir}" includes="*.jar, *.zip"/>
<fileset dir="../../lib/optional" includes="junit.jar" />
</copy> </copy>


<copy todir="${dist.ext}"> <copy todir="${dist.ext}">
<fileset dir="${build.ext}"/> <fileset dir="${build.ext}"/>
<fileset dir="${lib.dir}/ext"/>
</copy> </copy>


<copy todir="${dist.lib}">
<fileset dir="${lib.dir}">
<exclude name="xdoclet.jar"/>
<exclude name="jdepend.jar"/>
</fileset>
</copy>

<copy todir="${dist.lib}" file="../../lib/optional/junit.jar" />

<copy todir="${dist.bin}"> <copy todir="${dist.bin}">
<fileset dir="${script.dir}"/> <fileset dir="${script.dir}"/>
</copy> </copy>


proposal/myrmidon/lib/excalibur-cli-1.0.jar → proposal/myrmidon/lib/bin/lib/excalibur-cli-1.0.jar View File


proposal/myrmidon/lib/excalibur-bzip2-1.0a.jar → proposal/myrmidon/lib/ext/excalibur-bzip2-1.0a.jar View File


proposal/myrmidon/lib/excalibur-tar-1.0a.jar → proposal/myrmidon/lib/ext/excalibur-tar-1.0a.jar View File


proposal/myrmidon/lib/excalibur-zip-1.0a.jar → proposal/myrmidon/lib/ext/excalibur-zip-1.0a.jar View File


+ 3
- 0
proposal/myrmidon/src/manifest/archive-manifest.mf View File

@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Extension-List: bzip2
bzip2-Extension-Name: excalibur-bzip2

proposal/myrmidon/lib/LICENSE.jdepend.txt → proposal/myrmidon/tools/lib/LICENSE.jdepend.txt View File


Loading…
Cancel
Save