Author: vajda
Date: Wed Nov 30 17:43:07 2005
New Revision: 350095
URL: http://svn.apache.org/viewcvs?rev=350095&view=rev
Log:
- changed build to use version 4.3.29 of the C Berkeley DB Java API
- updated copyright notice year ranges to include 2005
Modified:
lucene/java/trunk/contrib/db/build.xml
lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/Block.java
lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbDirectory.java
lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexInput.java
lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexOutput.java
lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbLock.java
lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/File.java
Modified: lucene/java/trunk/contrib/db/build.xml
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/build.xml?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/build.xml (original)
+++ lucene/java/trunk/contrib/db/build.xml Wed Nov 30 17:43:07 2005
@@ -5,25 +5,25 @@
Lucene DB integration
</description>
- <path id="db-4.3.27">
- <pathelement location="lib/db-4.3.27.jar"/>
+ <path id="db-4.3.29">
+ <pathelement location="lib/db-4.3.29.jar"/>
</path>
<available classname="com.sleepycat.db.internal.Db" property="db.jar.exists">
- <classpath refid="db-4.3.27"/>
+ <classpath refid="db-4.3.29"/>
</available>
<pathconvert property="project.classpath"
targetos="unix"
- refid="db-4.3.27"
+ refid="db-4.3.29"
/>
<import file="../contrib-build.xml"/>
<target name="get-db-jar" unless="db.jar.exists">
<mkdir dir="lib"/>
- <get src="http://downloads.osafoundation.org/db/db-4.3.27.jar"
- dest="lib/db-4.3.27.jar"
+ <get src="http://downloads.osafoundation.org/db/db-4.3.29.jar"
+ dest="lib/db-4.3.29.jar"
/>
</target>
Modified: lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/Block.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/Block.java?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/Block.java (original)
+++ lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/Block.java Wed Nov 30
17:43:07 2005
@@ -1,7 +1,7 @@
package org.apache.lucene.store.db;
/**
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbDirectory.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbDirectory.java?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbDirectory.java (original)
+++ lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbDirectory.java Wed
Nov 30 17:43:07 2005
@@ -1,7 +1,7 @@
package org.apache.lucene.store.db;
/**
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexInput.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexInput.java?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexInput.java (original)
+++ lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexInput.java Wed
Nov 30 17:43:07 2005
@@ -1,7 +1,7 @@
package org.apache.lucene.store.db;
/**
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexOutput.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexOutput.java?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexOutput.java (original)
+++ lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbIndexOutput.java Wed
Nov 30 17:43:07 2005
@@ -1,7 +1,7 @@
package org.apache.lucene.store.db;
/**
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbLock.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbLock.java?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbLock.java (original)
+++ lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/DbLock.java Wed Nov 30
17:43:07 2005
@@ -1,7 +1,7 @@
package org.apache.lucene.store.db;
/**
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified: lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/File.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/File.java?rev=350095&r1=350094&r2=350095&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/File.java (original)
+++ lucene/java/trunk/contrib/db/src/java/org/apache/lucene/store/db/File.java Wed Nov 30
17:43:07 2005
@@ -1,7 +1,7 @@
package org.apache.lucene.store.db;
/**
- * Copyright 2002-2004 The Apache Software Foundation
+ * Copyright 2002-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
|