Updated the README for external users of the library. Switched to junit4 and a

version agnostic servlet-api.jar.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@2218 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2007-08-28 20:18:12 +00:00
parent f2e59a1107
commit dc2ba271cf
2 changed files with 15 additions and 35 deletions
+2 -2
View File
@@ -8,9 +8,9 @@
<include name="commons-io.jar"/> <include name="commons-io.jar"/>
<include name="commons-logging.jar"/> <include name="commons-logging.jar"/>
<include name="ehcache-1.2.jar"/> <include name="ehcache-1.2.jar"/>
<include name="junit-3.7.jar"/> <include name="junit4.jar"/>
<include name="mail.jar"/> <include name="mail.jar"/>
<include name="servlet-*.jar"/> <include name="servlet-api.jar"/>
<include name="velocity-1.5-dev.jar"/> <include name="velocity-1.5-dev.jar"/>
</fileset> </fileset>
</project> </project>
+13 -33
View File
@@ -1,39 +1,19 @@
Required external libraries Required external libraries
--------------------------- ---------------------------
The samskivert code requires the following external Java libraries (JAR The samskivert code requires external Java libraries (JAR files) to be placed
files) to be placed here in the lib/ directory or in the shared library here in the lib/ directory. The libraries are enumerated in the
directory specified in the build.xml file (${java.libraries}). etc/libs-incl.xml file and must be named as specified in that file.
* Library: Jakarta Regular Expression package (org.apache.regexp) Those libraries can be obtained at the following websites:
http://jakarta.apache.org/regexp/
Depends: Used by various services.
* Library: JDBC driver - http://ant.apache.org/
MM MySQL driver: http://mmmysql.sourceforge.net/ - http://ehcache.sourceforge.net/
Depends: Required by com.samskivert.jdbc.* - http://jakarta.apache.org/commons
- http://jakarta.apache.org/velocity
- http://java.sun.com/products/javamail/
- http://java.sun.com/products/servlet/
- http://junit.org/
* Library: WebMacro web template system The latest versions of the libraries should work, except where specific
http://www.webmacro.org/ versions are specified in the libs-incl.xml file.
Depends: Required by com.samskivert.webmacro.*
* Library: Jakarta Commons Collections (org.apache.commons.collections)
http://jakarta.apache.org/commons
Depends: Required by com.samskivert.velocity.*
* Library: Velocity web template system
http://jakarta.apache.org/velocity
Depends: Required by com.samskivert.velocity.*
* Library: Java API for XML Processing (JAXP) 1.1
http://java.sun.com/xml/download.html
(Only crimson.jar and jaxp.jar are required. xalan.jar may
safely be excluded.)
Depends: Required by com.samskivert.xml.*
Once the jar files are in place (regardless of what they are named), the
build system will automatically include them in the compile-time
classpath.
--
$Id$