Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
aibba committed Jan 5, 2005
1 parent c8e8a72 commit 951d89c
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,8 @@
<classpathentry kind="lib" path="lib/jakarta-oro-2.0.8.jar"/>
<classpathentry kind="lib" path="lib/bcel-5.1.jar"/>
<classpathentry kind="lib" path="lib/xml-apis.jar"/>
<classpathentry kind="lib" path="lib/jakarta-regexp-1.3.jar"/>
<classpathentry kind="lib" path="lib/JarAnalyzer-0.9.2.jar"/>
<classpathentry kind="lib" path="lib/ant.jar"/>
<classpathentry kind="output" path="classes"/>
</classpath>
27 changes: 27 additions & 0 deletions LICENSE-jaranalyzer.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright (c) 2004, Kirk Knoernschild
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Kirk Knoernschild nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
5 changes: 4 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@
<copy todir="${releasedir}/jar">
<fileset dir="${lib}">
<include name="**/*" />
<exclude name="bcel-5.1.jar" />
<exclude name="bcel-5.1.jar" />
<exclude name="jakarta-regexp-1.3.jar" />
<exclude name="JarAnalyzer-0.9.2.jar" />
<exclude name="ant.jar" />
</fileset>
</copy>
<zip destfile="${releasefile}" basedir="${bin}" />
Expand Down
17 changes: 6 additions & 11 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,7 @@ fit the needs of Mockrunner. The corresponding classes are in a different packag
than the original ActiveMQ classes, so you should not face classloading problems
when using ActiveMQ in your project.

Mockrunner depends on some third-party libraries. Most of them are included
in the release. Not included are the following libraries.
You have to download them. Please add the specified jars to the classpath:

Xerces XML Parser 2.0.0 (or higher):
http://xml.apache.org/xerces2-j/index.html
xml-apis.jar
xercesImpl.jar

The following libraries are included in the Mockrunner release. Just add them
to the classpath.
Mockrunner depends on some third-party libraries. Just add them to the classpath.
If you extend one of the test adapters (e.g. JDBCTestCaseAdapter), you have
to add all third-party libraries to the classpath, because the base class
for all adapters, BaseTestCase, depends on them. If you only use one test
Expand All @@ -98,6 +88,11 @@ related to the test module you use.

The third-party libraries included in the Mockrunner release are:

Xerces XML Parser 2.6.2:
http://xml.apache.org/xerces2-j/index.html
xml-apis.jar
xercesImpl.jar

Struts 1.2.4:
http://jakarta.apache.org/struts
struts.jar
Expand Down

0 comments on commit 951d89c

Please sign in to comment.