Repository: servicemix-bundles Updated Branches: refs/heads/master 33390eb26 -> 04e3e757b
[SM-3134] Create OSGi bundles for lucene 6.2.1 Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/04e3e757 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/04e3e757 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/04e3e757 Branch: refs/heads/master Commit: 04e3e757be5954605f7d818c02e32a82c4a2c643 Parents: 33390eb Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Oct 31 13:21:31 2016 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Oct 31 13:21:31 2016 +0100 ---------------------------------------------------------------------- lucene-6.2.1/pom.xml | 120 ++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 12 ++ lucene-analyzers-common-6.2.1/pom.xml | 116 ++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 12 ++ lucene-queries-6.2.1/pom.xml | 110 +++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 12 ++ lucene-queryparser-6.2.1/pom.xml | 115 ++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 12 ++ lucene-sandbox-6.2.1/pom.xml | 111 +++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 12 ++ pom.xml | 6 + solr-solrj-6.2.1/pom.xml | 183 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 21 +++ 13 files changed, 842 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-6.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/lucene-6.2.1/pom.xml b/lucene-6.2.1/pom.xml new file mode 100644 index 0000000..2687cf7 --- /dev/null +++ b/lucene-6.2.1/pom.xml @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.lucene</artifactId> + <version>6.2.1_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.apache.lucene</pkgGroupId> + <pkgArtifactId>lucene-core</pkgArtifactId> + <pkgVersion>6.2.1</pkgVersion> + <servicemix.osgi.export.pkg> + org.apache.lucene + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.management + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <includes> + <include>META-INF/services/**</include> + </includes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>2.5.3</version> + <extensions>true</extensions> + <inherited>false</inherited> + <configuration> + <instructions> + <Export-Package>${servicemix.osgi.export}</Export-Package> + <Import-Package>${servicemix.osgi.import.pkg}</Import-Package> + <Bundle-NativeCode>*</Bundle-NativeCode> + </instructions> + </configuration> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-6.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/lucene-6.2.1/src/main/resources/OSGI-INF/bundle.info b/lucene-6.2.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..ff8c068 --- /dev/null +++ b/lucene-6.2.1/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,12 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Apache Lucene(TM) is a high-performance, full-featured text search engine library written entirely in Java. + It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://lucene.apache.org/java/docs/index.html\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-analyzers-common-6.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/lucene-analyzers-common-6.2.1/pom.xml b/lucene-analyzers-common-6.2.1/pom.xml new file mode 100644 index 0000000..36020a4 --- /dev/null +++ b/lucene-analyzers-common-6.2.1/pom.xml @@ -0,0 +1,116 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.lucene-analyzers-common</artifactId> + <version>6.2.1_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.apache.lucene</pkgGroupId> + <pkgArtifactId>lucene-analyzers-common</pkgArtifactId> + <pkgVersion>6.2.1</pkgVersion> + <servicemix.osgi.export> + !org.apache.lucene.analysis, + !org.apache.lucene.analysis.tokenattributes, + org.apache.lucene.analysis.*;version=${pkgVersion};-split-package:=merge-first + </servicemix.osgi.export> + <servicemix.osgi.import.pkg> + javax.xml.parsers, + org.apache.lucene.analysis, + org.apache.lucene.analysis.tokenattributes, + org.apache.lucene.codecs, + org.apache.lucene.index, + org.apache.lucene.store, + org.apache.lucene.util, + org.apache.lucene.util.automaton, + org.apache.lucene.util.fst, + org.xml.sax, + org.xml.sax.helpers + </servicemix.osgi.import.pkg> + <servicemix.osgi.private.pkg> + org.tartarus.snowball* + </servicemix.osgi.private.pkg> + <servicemix.osgi.embed.dependency> + *;inline=META-INF/services/* + </servicemix.osgi.embed.dependency> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**/*</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-analyzers-common-6.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/lucene-analyzers-common-6.2.1/src/main/resources/OSGI-INF/bundle.info b/lucene-analyzers-common-6.2.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..ff8c068 --- /dev/null +++ b/lucene-analyzers-common-6.2.1/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,12 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Apache Lucene(TM) is a high-performance, full-featured text search engine library written entirely in Java. + It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://lucene.apache.org/java/docs/index.html\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-queries-6.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/lucene-queries-6.2.1/pom.xml b/lucene-queries-6.2.1/pom.xml new file mode 100644 index 0000000..95b601d --- /dev/null +++ b/lucene-queries-6.2.1/pom.xml @@ -0,0 +1,110 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.lucene-queries</artifactId> + <version>6.2.1_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.apache.lucene</pkgGroupId> + <pkgArtifactId>lucene-queries</pkgArtifactId> + <pkgVersion>6.2.1</pkgVersion> + <servicemix.osgi.export.pkg> + org.apache.lucene.queries + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + org.apache.lucene.analysis*, + org.apache.lucene.document, + org.apache.lucene.index, + org.apache.lucene.search*, + org.apache.lucene.util* + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**/*</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-queries-6.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/lucene-queries-6.2.1/src/main/resources/OSGI-INF/bundle.info b/lucene-queries-6.2.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..ff8c068 --- /dev/null +++ b/lucene-queries-6.2.1/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,12 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Apache Lucene(TM) is a high-performance, full-featured text search engine library written entirely in Java. + It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://lucene.apache.org/java/docs/index.html\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-queryparser-6.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/lucene-queryparser-6.2.1/pom.xml b/lucene-queryparser-6.2.1/pom.xml new file mode 100644 index 0000000..6984f3c --- /dev/null +++ b/lucene-queryparser-6.2.1/pom.xml @@ -0,0 +1,115 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.lucene-queryparser</artifactId> + <version>6.2.1_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.apache.lucene</pkgGroupId> + <pkgArtifactId>lucene-queryparser</pkgArtifactId> + <pkgVersion>6.2.1</pkgVersion> + <servicemix.osgi.export.pkg> + org.apache.lucene.queryparser + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.xml.parsers, + javax.xml.transform, + javax.xml.transform.dom, + javax.xml.transform.stream, + org.apache.lucene.analysis, + org.apache.lucene.analysis.tokenattributes, + org.apache.lucene.document, + org.apache.lucene.index, + org.apache.lucene.queries, + org.apache.lucene.queries.mlt, + org.apache.lucene.queries.payloads, + org.apache.lucene.sandbox.queries, + org.apache.lucene.search, + org.apache.lucene.search.spans, + org.apache.lucene.util, + org.apache.lucene.util.automaton, + org.w3c.dom, + org.xml.sax + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**/*</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-queryparser-6.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/lucene-queryparser-6.2.1/src/main/resources/OSGI-INF/bundle.info b/lucene-queryparser-6.2.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..ff8c068 --- /dev/null +++ b/lucene-queryparser-6.2.1/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,12 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Apache Lucene(TM) is a high-performance, full-featured text search engine library written entirely in Java. + It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://lucene.apache.org/java/docs/index.html\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-sandbox-6.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/lucene-sandbox-6.2.1/pom.xml b/lucene-sandbox-6.2.1/pom.xml new file mode 100644 index 0000000..172d6ff --- /dev/null +++ b/lucene-sandbox-6.2.1/pom.xml @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.lucene-sandbox</artifactId> + <version>6.2.1_1-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.apache.lucene</pkgGroupId> + <pkgArtifactId>lucene-sandbox</pkgArtifactId> + <pkgVersion>6.2.1</pkgVersion> + <servicemix.osgi.export.pkg> + org.apache.lucene.sandbox + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + org.apache.lucene.analysis*, + org.apache.lucene.index, + org.apache.lucene.search*, + org.apache.lucene.util, + org.apache.lucene.util.automaton, + org.apache.regexp + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**/*</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/lucene-sandbox-6.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/lucene-sandbox-6.2.1/src/main/resources/OSGI-INF/bundle.info b/lucene-sandbox-6.2.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..ff8c068 --- /dev/null +++ b/lucene-sandbox-6.2.1/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,12 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Apache Lucene(TM) is a high-performance, full-featured text search engine library written entirely in Java. + It is a technology suitable for nearly any application that requires full-text search, especially cross-platform. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://lucene.apache.org/java/docs/index.html\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 29986aa..ca43df9 100644 --- a/pom.xml +++ b/pom.xml @@ -66,6 +66,12 @@ <module>opensaml-3.1.1</module> <module>opensaml-3.2.0</module> <module>hbase-1.2.3</module> + <module>lucene-6.2.1</module> + <module>lucene-analyzers-common-6.2.1</module> + <module>lucene-queries-6.2.1</module> + <module>lucene-queryparser-6.2.1</module> + <module>lucene-sandbox-6.2.1</module> + <module>solr-solrj-6.2.1</module> </modules> </project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/solr-solrj-6.2.1/pom.xml ---------------------------------------------------------------------- diff --git a/solr-solrj-6.2.1/pom.xml b/solr-solrj-6.2.1/pom.xml new file mode 100644 index 0000000..f81ab8f --- /dev/null +++ b/solr-solrj-6.2.1/pom.xml @@ -0,0 +1,183 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>12</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.solr-solrj</artifactId> + <packaging>bundle</packaging> + <version>6.2.1_1-SNAPSHOT</version> + <name>Apache ServiceMix :: Bundles :: SolrJ</name> + <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.apache.solr</pkgGroupId> + <pkgArtifactId>solr-solrj</pkgArtifactId> + <pkgVersion>6.2.1</pkgVersion> + <servicemix.osgi.export.pkg> + org.apache.solr + </servicemix.osgi.export.pkg> + <servicemix.osgi.import.pkg> + javax.net.ssl*, + javax.security.auth.login, + javax.xml*, + org.w3c.dom, + org.xml.sax*, + org.apache.commons.io, + org.apache.commons.io.input, + org.apache.http*, + org.apache.noggit;resolution:=optional, + org.apache.zookeeper*;resolution:=optional, + org.noggit;resolution:=optional, + org.slf4j;resolution:=optional + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <exclusions> + <exclusion> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + </exclusion> + <exclusion> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </exclusion> + <exclusion> + <groupId>org.noggit</groupId> + <artifactId>noggit</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpmime</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.woodstox</groupId> + <artifactId>wstx-asl</artifactId> + </exclusion> + </exclusions> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + <exclusions> + <exclusion> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + </exclusion> + <exclusion> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </exclusion> + <exclusion> + <groupId>org.noggit</groupId> + <artifactId>noggit</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpmime</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.woodstox</groupId> + <artifactId>wstx-asl</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <artifactSet> + <includes> + <include>${pkgGroupId}:${pkgArtifactId}</include> + </includes> + </artifactSet> + <filters> + <filter> + <artifact>${pkgGroupId}:${pkgArtifactId}</artifact> + <excludes> + <exclude>**</exclude> + </excludes> + </filter> + </filters> + <promoteTransitiveDependencies>true</promoteTransitiveDependencies> + <createDependencyReducedPom>true</createDependencyReducedPom> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <version>2.5.3</version> + <extensions>true</extensions> + <inherited>false</inherited> + <configuration> + <instructions> + <Export-Package>${servicemix.osgi.export}</Export-Package> + <Import-Package>${servicemix.osgi.import.pkg}</Import-Package> + <Bundle-NativeCode>*</Bundle-NativeCode> + </instructions> + </configuration> + </plugin> + </plugins> + </build> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/04e3e757/solr-solrj-6.2.1/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/solr-solrj-6.2.1/src/main/resources/OSGI-INF/bundle.info b/solr-solrj-6.2.1/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..d679ddc --- /dev/null +++ b/solr-solrj-6.2.1/src/main/resources/OSGI-INF/bundle.info @@ -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
