--apache

	commons-compress:
		http://commons.apache.org/sandbox/compress/
	tomcat:
		http://tomcat.apache.org/

	--is under the Apache License, which is BSD-like
		http://en.wikipedia.org/wiki/Apache_License
		
	Note: tomcat includes sun's servlet.jar file, which seems to be governed by this license (see the section
		PROGRAM DEVELOPMENT AND SERVLET JAR FILE
		DISTRIBUTION SUPPLEMENTAL LICENSE TERMS
	):
		http://java.sun.com/products/servlet/LICENSE


--JAMA (LMA below uses it)
	http://math.nist.gov/javanumerics/jama/
	
	license: public domain
		http://cio.nist.gov/esd/emaildir/lists/jama/msg01409.html


--JavaMail
	http://java.sun.com/products/javamail/
	
	license: "The current release of the JavaMail API implementation, is completely free and you can include it in your product."
		http://java.sun.com/products/javamail/FAQ.html#free


--JIP
	http://jiprof.sourceforge.net/
	http://sourceforge.net/projects/jiprof/

	--is under the BSD


--JSci:
	http://jsci.sourceforge.net/

	--is under the LGPL


--JUnit 4
	www.junit.org/
	http://junit.sourceforge.net/

	--is under the Common Public License - v 1.0
		http://junit.sourceforge.net/cpl-v10.html
		http://en.wikipedia.org/wiki/Common_Public_License
		http://www.ibm.com/developerworks/library/os-cplfaq.html


--LMA
	http://users.utu.fi/jaolho/
Version 1.3 was last stored here:
	http://virtualrisk.cvs.sourceforge.net/*checkout*/virtualrisk/util/lma/lma_v1.3.zip
	
	license: "its public domain" (email from the author, Janne Holopainen, to me)


--MersenneTwister/MersenneTwisterFast
	http://cs.gmu.edu/~sean/research/mersenne/
	
	license (copied from the javadocs, BSD-like):
		Copyright (c) 2003 by Sean Luke.
		Portions copyright (c) 1993 by Michael Lecuyer.
		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 copyright owners, their employers, 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 OWNERS 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.



--SIMD-oriented Fast Mersenne Twister (SFMT)
	http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/index.html
	
	java version:
		http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/VERSIONS/ARCHIVES/SFMT-java.zip
	
	license (copied from
		http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/LICENSE.txt
	is BSD-like):
		Copyright (c) 2006,2007 Mutsuo Saito, Makoto Matsumoto and Hiroshima
		University. 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 Hiroshima University 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.


