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 Apache Wiki <wi...@apache.org> on 2009/12/15 00:24:00 UTC

[Solr Wiki] Update of "Solrj" by SaschaSzott

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "Solrj" page has been changed by SaschaSzott.
http://wiki.apache.org/solr/Solrj?action=diff&rev1=41&rev2=42

--------------------------------------------------

  = Setting the classpath =
  
  == Ant ==
+ 
+ === Solr 1.4 ===
+ 
+ SolrJ is a part of the 1.4 release. The jars required in the classpath for SolrJ are,
+ 
+  * commons-codec-1.3.jar
+  * commons-fileupload-1.2.1.jar
+  * commons-httpclient-3.1.jar
+  * commons-io-1.4.jar
+  * commons-logging-1.0.4.jar
+  * geronimo-stax-api_1.0_spec-1.0.1.jar
+  * solr-solrj-1.4.0.jar
+  * wstx-asl-3.2.7.jar
+  * slf4j-api-1.5.5.jar
+  * stax-api-1.0.1.jar
+ 
+ === Solr 1.3 ===
+ 
- SolrJ is a part of the 1.3.0 release. The jars required in the classpath for SolrJ are,
+ SolrJ is a part of the 1.3 release. The jars required in the classpath for SolrJ are,
  
   * commons-io-1.3.1.jar
   * commons-httpclient-3.1.jar
@@ -314, +332 @@

   * apache-solr-common-1.3.0.jar
   * apache-solr-solrj-1.3.0.jar
  
+ === Solr 1.2 ===
+ 
  If you are using an Solr 1.2, add the stax jars too. Do not forget to set the [[#xmlparser|XML parser]]
   * geronimo-stax-api_1.0_spec-1.0.1.jar
   * wstx-asl-3.2.7.jar
@@ -328, +348 @@

          <dependency>
                 <artifactId>solr-solrj</artifactId>
                 <groupId>org.apache.solr</groupId>
-                <version>1.3.0</version>
+                <version>1.4.0</version>
                 <type>jar</type>
                 <scope>compile</scope>
          </dependency>
@@ -339, +359 @@

          <dependency>
                 <artifactId>solr-core</artifactId>
                 <groupId>org.apache.solr</groupId>
-                <version>1.3.0</version>
+                <version>1.4.0</version>
                 <type>jar</type>
                 <scope>compile</scope>
          </dependency>