You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2008/09/09 17:57:37 UTC

svn commit: r693498 - in /lucene/solr/trunk: CHANGES.txt build.xml lib/geronimo-stax-api_1.0_spec-1.0.1.jar lib/stax-1.2.0.jar lib/stax-api-1.0.1.jar lib/wstx-asl-3.2.7.jar

Author: yonik
Date: Tue Sep  9 08:57:37 2008
New Revision: 693498

URL: http://svn.apache.org/viewvc?rev=693498&view=rev
Log:
replace stax with geronimo API jar and woodstox impl

Added:
    lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar   (with props)
    lucene/solr/trunk/lib/wstx-asl-3.2.7.jar   (with props)
Removed:
    lucene/solr/trunk/lib/stax-1.2.0.jar
    lucene/solr/trunk/lib/stax-api-1.0.1.jar
Modified:
    lucene/solr/trunk/CHANGES.txt
    lucene/solr/trunk/build.xml

Modified: lucene/solr/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/CHANGES.txt?rev=693498&r1=693497&r2=693498&view=diff
==============================================================================
--- lucene/solr/trunk/CHANGES.txt (original)
+++ lucene/solr/trunk/CHANGES.txt Tue Sep  9 08:57:37 2008
@@ -658,6 +658,8 @@
 24. Upgraded to Lucene 2.4-dev (r686801) (yonik)
 25. Upgraded to Lucene 2.4-dev (r688745) 27-Aug-2008 (yonik)
 26. Upgraded to Lucene 2.4-dev (r691741) 03-Sep-2008 (yonik)
+27. Replaced the StAX reference implementation with the geronimo
+    StAX API jar, and the Woodstox StAX implementation. (yonik)
 
 Build
  1. SOLR-411.  Changed the names of the Solr JARs to use the defacto standard JAR names based on

Modified: lucene/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=693498&r1=693497&r2=693498&view=diff
==============================================================================
--- lucene/solr/trunk/build.xml (original)
+++ lucene/solr/trunk/build.xml Tue Sep  9 08:57:37 2008
@@ -305,7 +305,8 @@
     </fileset>
     <fileset dir="${lib}">
       <include name="commons-io-*.jar" />
-      <include name="stax-*.jar" />
+      <include name="*stax-*.jar" />
+      <include name="wstx-*.jar" />
     </fileset>
     <pathelement location="${dest}/common"/>
   </path>
@@ -597,7 +598,8 @@
       <fileset dir="${lib}">
         <include name="commons-codec-*.jar"/>
         <include name="commons-io-*.jar"/>
-        <include name="stax-*.jar"/>
+        <include name="*stax-*.jar" />
+        <include name="wstx-*.jar" />
       </fileset>
       <fileset dir="${solrj-dir}/lib">
         <include name="*.jar" />

Added: lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar?rev=693498&view=auto
==============================================================================
Binary file - no diff available.

Propchange: lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
------------------------------------------------------------------------------
    svn:executable = *

Propchange: lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: lucene/solr/trunk/lib/wstx-asl-3.2.7.jar
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/lib/wstx-asl-3.2.7.jar?rev=693498&view=auto
==============================================================================
Binary file - no diff available.

Propchange: lucene/solr/trunk/lib/wstx-asl-3.2.7.jar
------------------------------------------------------------------------------
    svn:executable = *

Propchange: lucene/solr/trunk/lib/wstx-asl-3.2.7.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream



Re: svn commit: r693498 - in /lucene/solr/trunk: CHANGES.txt build.xml lib/geronimo-stax-api_1.0_spec-1.0.1.jar lib/stax-1.2.0.jar lib/stax-api-1.0.1.jar lib/wstx-asl-3.2.7.jar

Posted by Chris Hostetter <ho...@fucit.org>.
For future refrence: this is a significant enough change that it would 
have been really nice to open a Jira issue first and refer to it in the 
commit message.

The Jira description could have then contained links to the mail archive 
fully explaining why the change was made (and served as a refrence point 
for linking any potential bugs that it may cause)


: Date: Tue, 09 Sep 2008 15:57:37 -0000
: From: yonik@apache.org
: Reply-To: solr-dev@lucene.apache.org
: To: solr-commits@lucene.apache.org
: Subject: svn commit: r693498 - in /lucene/solr/trunk: CHANGES.txt build.xml
:     lib/geronimo-stax-api_1.0_spec-1.0.1.jar lib/stax-1.2.0.jar
:     lib/stax-api-1.0.1.jar lib/wstx-asl-3.2.7.jar
: 
: Author: yonik
: Date: Tue Sep  9 08:57:37 2008
: New Revision: 693498
: 
: URL: http://svn.apache.org/viewvc?rev=693498&view=rev
: Log:
: replace stax with geronimo API jar and woodstox impl
: 
: Added:
:     lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar   (with props)
:     lucene/solr/trunk/lib/wstx-asl-3.2.7.jar   (with props)
: Removed:
:     lucene/solr/trunk/lib/stax-1.2.0.jar
:     lucene/solr/trunk/lib/stax-api-1.0.1.jar
: Modified:
:     lucene/solr/trunk/CHANGES.txt
:     lucene/solr/trunk/build.xml
: 
: Modified: lucene/solr/trunk/CHANGES.txt
: URL: http://svn.apache.org/viewvc/lucene/solr/trunk/CHANGES.txt?rev=693498&r1=693497&r2=693498&view=diff
: ==============================================================================
: --- lucene/solr/trunk/CHANGES.txt (original)
: +++ lucene/solr/trunk/CHANGES.txt Tue Sep  9 08:57:37 2008
: @@ -658,6 +658,8 @@
:  24. Upgraded to Lucene 2.4-dev (r686801) (yonik)
:  25. Upgraded to Lucene 2.4-dev (r688745) 27-Aug-2008 (yonik)
:  26. Upgraded to Lucene 2.4-dev (r691741) 03-Sep-2008 (yonik)
: +27. Replaced the StAX reference implementation with the geronimo
: +    StAX API jar, and the Woodstox StAX implementation. (yonik)
:  
:  Build
:   1. SOLR-411.  Changed the names of the Solr JARs to use the defacto standard JAR names based on
: 
: Modified: lucene/solr/trunk/build.xml
: URL: http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=693498&r1=693497&r2=693498&view=diff
: ==============================================================================
: --- lucene/solr/trunk/build.xml (original)
: +++ lucene/solr/trunk/build.xml Tue Sep  9 08:57:37 2008
: @@ -305,7 +305,8 @@
:      </fileset>
:      <fileset dir="${lib}">
:        <include name="commons-io-*.jar" />
: -      <include name="stax-*.jar" />
: +      <include name="*stax-*.jar" />
: +      <include name="wstx-*.jar" />
:      </fileset>
:      <pathelement location="${dest}/common"/>
:    </path>
: @@ -597,7 +598,8 @@
:        <fileset dir="${lib}">
:          <include name="commons-codec-*.jar"/>
:          <include name="commons-io-*.jar"/>
: -        <include name="stax-*.jar"/>
: +        <include name="*stax-*.jar" />
: +        <include name="wstx-*.jar" />
:        </fileset>
:        <fileset dir="${solrj-dir}/lib">
:          <include name="*.jar" />
: 
: Added: lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
: URL: http://svn.apache.org/viewvc/lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar?rev=693498&view=auto
: ==============================================================================
: Binary file - no diff available.
: 
: Propchange: lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
: ------------------------------------------------------------------------------
:     svn:executable = *
: 
: Propchange: lucene/solr/trunk/lib/geronimo-stax-api_1.0_spec-1.0.1.jar
: ------------------------------------------------------------------------------
:     svn:mime-type = application/octet-stream
: 
: Added: lucene/solr/trunk/lib/wstx-asl-3.2.7.jar
: URL: http://svn.apache.org/viewvc/lucene/solr/trunk/lib/wstx-asl-3.2.7.jar?rev=693498&view=auto
: ==============================================================================
: Binary file - no diff available.
: 
: Propchange: lucene/solr/trunk/lib/wstx-asl-3.2.7.jar
: ------------------------------------------------------------------------------
:     svn:executable = *
: 
: Propchange: lucene/solr/trunk/lib/wstx-asl-3.2.7.jar
: ------------------------------------------------------------------------------
:     svn:mime-type = application/octet-stream
: 
: 



-Hoss