Return-Path: X-Original-To: apmail-servicemix-commits-archive@www.apache.org Delivered-To: apmail-servicemix-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9F4E17B68 for ; Thu, 1 Dec 2011 19:01:07 +0000 (UTC) Received: (qmail 62506 invoked by uid 500); 1 Dec 2011 19:01:07 -0000 Delivered-To: apmail-servicemix-commits-archive@servicemix.apache.org Received: (qmail 62434 invoked by uid 500); 1 Dec 2011 19:01:07 -0000 Mailing-List: contact commits-help@servicemix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@servicemix.apache.org Delivered-To: mailing list commits@servicemix.apache.org Received: (qmail 62413 invoked by uid 99); 1 Dec 2011 19:01:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2011 19:01:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2011 19:01:05 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7C79723889C5 for ; Thu, 1 Dec 2011 19:00:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1209187 - in /servicemix/smx4/bundles/trunk: ./ solr-solrj-3.5.0/ solr-solrj-3.5.0/src/ solr-solrj-3.5.0/src/main/ solr-solrj-3.5.0/src/main/resources/ solr-solrj-3.5.0/src/main/resources/OSGI-INF/ Date: Thu, 01 Dec 2011 19:00:45 -0000 To: commits@servicemix.apache.org From: jbonofre@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111201190045.7C79723889C5@eris.apache.org> Author: jbonofre Date: Thu Dec 1 19:00:43 2011 New Revision: 1209187 URL: http://svn.apache.org/viewvc?rev=1209187&view=rev Log: [SMX4-994] Create OSGi bundle for solr-solrj 3.5.0 Added: servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/pom.xml servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/OSGI-INF/ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/OSGI-INF/bundle.info Modified: servicemix/smx4/bundles/trunk/pom.xml Modified: servicemix/smx4/bundles/trunk/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=1209187&r1=1209186&r2=1209187&view=diff ============================================================================== --- servicemix/smx4/bundles/trunk/pom.xml (original) +++ servicemix/smx4/bundles/trunk/pom.xml Thu Dec 1 19:00:43 2011 @@ -53,6 +53,7 @@ xmlrpc-server-3.1.3 ws-commons-util-1.0.2 solr-solrj-3.4.0 + solr-solrj-3.5.0 Added: servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/pom.xml?rev=1209187&view=auto ============================================================================== --- servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/pom.xml (added) +++ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/pom.xml Thu Dec 1 19:00:43 2011 @@ -0,0 +1,99 @@ + + + + + + 4.0.0 + + + org.apache.servicemix.bundles + bundles-pom + 6 + ../bundles-pom/pom.xml + + + org.apache.servicemix.bundles + org.apache.servicemix.bundles.solr-solrj + bundle + 3.5.0_1-SNAPSHOT + Apache ServiceMix :: Bundles :: SolrJ + This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file. + + + org.apache.solr + solr-solrj + 3.5.0 + + org.apache.solr + + + !org.apache.solr*, + javax.xml.stream, + javax.xml.transform*, + org.apache.commons.httpclient*;version="[3,4)", + org.slf4j;resolution:=optional, + org.w3c.dom, + org.xml.sax* + + + + + + ${pkgGroupId} + ${pkgArtifactId} + ${pkgVersion} + true + + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + package + + shade + + + + + ${pkgGroupId}:${pkgArtifactId} + + + + + ${pkgGroupId}:${pkgArtifactId} + + ** + + + + true + true + + + + + + + + \ No newline at end of file Added: servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/OSGI-INF/bundle.info URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/OSGI-INF/bundle.info?rev=1209187&view=auto ============================================================================== --- servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/OSGI-INF/bundle.info (added) +++ servicemix/smx4/bundles/trunk/solr-solrj-3.5.0/src/main/resources/OSGI-INF/bundle.info Thu Dec 1 19:00:43 2011 @@ -0,0 +1,21 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Solr is the popular, blazing fast open source enterprise search platform from the Apache Lucene project. + Its major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, + database integration, rich document (e.g., Word, PDF) handling, and geospatial search. Solr is highly scalable, + providing distributed search and index replication, and it powers the search and navigation features of many of + the world's largest internet sites. + + Solr is written in Java and runs as a standalone full-text search server within a servlet container such as Tomcat. + Solr uses the Lucene Java search library at its core for full-text indexing and search, and has REST-like HTTP/XML + and JSON APIs that make it easy to use from virtually any programming language. Solr's powerful external + configuration allows it to be tailored to almost any type of application without Java coding, and it has an + extensive plugin architecture when more advanced customization is required. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://lucene.apache.org/solr/\u001B[0m