Update of /cvsroot/archive-access/archive-access/projects/wayback
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29017
Modified Files:
.classpath project.properties project.xml
Added Files:
build.xml
Log Message:
* .classpath
* project.properties
* project.xml
Add commons-codec and dsi lib.
* build.xml
Empty, placeholder build.xml (Prevents harmless exception spew during
maven build).
* src/webapp/WEB-INF/lib/commons-codec-1.3.jar
* src/webapp/WEB-INF/lib/dsi-unimi-it-1.0.0.kb.jar
Added.
Index: .classpath
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wayback/.classpath,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** .classpath 20 Oct 2005 01:37:39 -0000 1.3
--- .classpath 25 Oct 2005 03:23:41 -0000 1.4
***************
*** 15,18 ****
--- 15,22 ----
<classpathentry kind="lib"
path="src/webapp/WEB-INF/lib/arc-1.5.1-200510181911.jar"/>
+ <classpathentry kind="lib"
+ path="/src/webapp/WEB-INF/lib/commons-codec-1.3.jar"/>
+ <classpathentry kind="lib"
+ path="src/webapp/WEB-INF/lib/dsi-unimi-it-1.0.0.kb.jar"/>
<classpathentry kind="output" path="src/webapp/WEB-INF/classes"/>
</classpath>
Index: project.properties
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wayback/project.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** project.properties 20 Oct 2005 01:30:36 -0000 1.1
--- project.properties 25 Oct 2005 03:23:41 -0000 1.2
***************
*** 21,24 ****
--- 21,26 ----
maven.jar.je = ${basedir}/src/webapp/WEB-INF/lib/je-2.0.83.jar
maven.jar.arc = ${basedir}/src/webapp/WEB-INF/lib/arc-1.5.1-200510181911.jar
+ maven.jar.commons-codec = ${basedir}/src/webapp/WEB-INF/lib/commons-codec-1.3.jar
+ maven.jar.dsi-unimi-it = ${basedir}/src/webapp/WEB-INF/lib/dsi-unimi-it-1.0.0.kb.jar
# Junit properties
--- NEW FILE: build.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<!--Use maven to build. Ant not supported.
(This is a placeholder build.xml. Without it, the maven build of src
will try to autogenerate an ant build file spewing an ugly exception
into the build).
-->
Index: project.xml
===================================================================
RCS file: /cvsroot/archive-access/archive-access/projects/wayback/project.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** project.xml 20 Oct 2005 16:51:54 -0000 1.2
--- project.xml 25 Oct 2005 03:23:41 -0000 1.3
***************
*** 210,213 ****
--- 210,247 ----
</properties>
</dependency>
+ <dependency>
+ <id>commons-codec</id>
+ <version>1.3</version>
+ <url>http://jakarta.apache.org/commons/codec/</url>
+ <properties>
+ <war.bundle>true</war.bundle>
+ <ear.bundle>true</ear.bundle>
+ <ear.bundle.dir>APP-INF/lib</ear.bundle.dir>
+ <description>Commons Codec provides implementations of common
+ encoders and decoders such as Base64, Hex, various phonetic
+ encodings, and URLs.</description>
+ <license>Apache 2.0
+ http://www.apache.org/licenses/LICENSE-2.0</license>
+ </properties>
+ </dependency>
+ <dependency>
+ <id>dsi-unimi-it</id>
+ <version>1.0.0</version>
+ <url>http://mg4j.dsi.unimi.it/</url>
+ <properties>
+ <war.bundle>true</war.bundle>
+ <ear.bundle>true</ear.bundle>
+ <ear.bundle.dir>APP-INF/lib</ear.bundle.dir>
+ <description>Alternatives to String,
+ StringBuffer, unsynchronized I/0, and a ConsistentHashFunction.
+ Made from subsets of mg4j-0.9.1 and fastutil-4.4.0,
+ -- two jars that came of the ubicrawler project,
+ http://ubi0.iit.cnr.it/projects/ubi/ -- using autojar:
+ java -jar ~/workspace/autojar-1.2.2/autojar-1.2.2.jar -v -o
+ dss.unimi.it-1.0.0.jar -c fastutil-4.4.0/fastutil-4.4.0.jar:mg4j-0.9.1/mg4j-0.9.1.jar:ubix-1.0.3/ubix-1.0.3.jar: it.unimi.dsi.mg4j.util.MutableString.class it.unimi.dsi.mg4j.io.FastBufferedInputStream.class it.unimi.dsi.mg4j.io.FastBufferedOutputStream.class it.unimi.dsi.mg4j.io.FastBufferedReader.class it.unimi.dsi.mg4j.io.FastByteArrayInputStream.class it.unimi.dsi.mg4j.io.FastByteArrayOutputStream.class it.unimi.dsi.mg4j.io.FastMultiByteArrayInputStream.class it.unimi.dsi.ubix.ConsistentHashFunction.class</description>
+ <license>MG4J, ConsistentHashFunction, and fastutils are
+ LGPL</license>
+ </properties>
+ </dependency>
</dependencies>
|