You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ac...@apache.org on 2017/12/22 09:40:46 UTC

[1/5] servicemix-bundles git commit: [SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene bundle

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master bbfd2ad36 -> 1041a8618


[SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene bundle


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/10c0d09a
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/10c0d09a
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/10c0d09a

Branch: refs/heads/master
Commit: 10c0d09ac64e3d9999df359c57ab6a3854d4450a
Parents: bbfd2ad
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 22 10:27:25 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 22 10:27:25 2017 +0100

----------------------------------------------------------------------
 lucene-7.1.0/pom.xml                            | 106 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  12 ---
 lucene-7.2.0/pom.xml                            | 106 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 +++
 pom.xml                                         |   1 +
 5 files changed, 119 insertions(+), 118 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/10c0d09a/lucene-7.1.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-7.1.0/pom.xml b/lucene-7.1.0/pom.xml
deleted file mode 100644
index 2d23ac1..0000000
--- a/lucene-7.1.0/pom.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.lucene</artifactId>
-    <version>7.1.0_2-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>7.1.0</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>
-        </plugins>
-    </build>
-</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/10c0d09a/lucene-7.1.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-7.1.0/src/main/resources/OSGI-INF/bundle.info b/lucene-7.1.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index ff8c068..0000000
--- a/lucene-7.1.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,12 +0,0 @@
-\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/10c0d09a/lucene-7.2.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-7.2.0/pom.xml b/lucene-7.2.0/pom.xml
new file mode 100644
index 0000000..5eaf65e
--- /dev/null
+++ b/lucene-7.2.0/pom.xml
@@ -0,0 +1,106 @@
+<?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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.lucene</artifactId>
+    <version>7.2.0_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>7.2.0</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>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/10c0d09a/lucene-7.2.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-7.2.0/src/main/resources/OSGI-INF/bundle.info b/lucene-7.2.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..ff8c068
--- /dev/null
+++ b/lucene-7.2.0/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/10c0d09a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0970719..1251b88 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,7 @@
         <module>asterisk-java-2.0.2</module>
         <module>elasticsearch-6.1.1</module>
         <module>elasticsearch-client-6.1.1</module>
+        <module>lucene-7.2.0</module>
     </modules>
 
 </project>


[4/5] servicemix-bundles git commit: [SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene Query Parser bundle

Posted by ac...@apache.org.
[SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene Query Parser bundle


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/32d6306b
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/32d6306b
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/32d6306b

Branch: refs/heads/master
Commit: 32d6306b1ac57b819b8c18fdb5c5faef835f3e7c
Parents: 23cfb2b
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 22 10:32:49 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 22 10:32:49 2017 +0100

----------------------------------------------------------------------
 lucene-queryparser-7.1.0/pom.xml                | 115 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  12 --
 lucene-queryparser-7.2.0/pom.xml                | 115 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 ++
 pom.xml                                         |   1 +
 5 files changed, 128 insertions(+), 127 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/32d6306b/lucene-queryparser-7.1.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-queryparser-7.1.0/pom.xml b/lucene-queryparser-7.1.0/pom.xml
deleted file mode 100644
index c0d063f..0000000
--- a/lucene-queryparser-7.1.0/pom.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.lucene-queryparser</artifactId>
-    <version>7.1.0_2-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>7.1.0</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/32d6306b/lucene-queryparser-7.1.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-queryparser-7.1.0/src/main/resources/OSGI-INF/bundle.info b/lucene-queryparser-7.1.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index ff8c068..0000000
--- a/lucene-queryparser-7.1.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,12 +0,0 @@
-\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/32d6306b/lucene-queryparser-7.2.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-queryparser-7.2.0/pom.xml b/lucene-queryparser-7.2.0/pom.xml
new file mode 100644
index 0000000..837d241
--- /dev/null
+++ b/lucene-queryparser-7.2.0/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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.lucene-queryparser</artifactId>
+    <version>7.2.0_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>7.2.0</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/32d6306b/lucene-queryparser-7.2.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-queryparser-7.2.0/src/main/resources/OSGI-INF/bundle.info b/lucene-queryparser-7.2.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..ff8c068
--- /dev/null
+++ b/lucene-queryparser-7.2.0/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/32d6306b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b14d565..3a1e369 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,6 +54,7 @@
         <module>lucene-7.2.0</module>
         <module>lucene-analyzers-common-7.2.0</module>
         <module>lucene-queries-7.2.0</module>
+        <module>lucene-queryparser-7.2.0</module>
     </modules>
 
 </project>


[3/5] servicemix-bundles git commit: [SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene Queries bundle

Posted by ac...@apache.org.
[SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene Queries bundle


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/23cfb2ba
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/23cfb2ba
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/23cfb2ba

Branch: refs/heads/master
Commit: 23cfb2ba20f961f91d5d520916523e373b89d94d
Parents: 4d1c3bd
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 22 10:30:52 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 22 10:30:52 2017 +0100

----------------------------------------------------------------------
 lucene-queries-7.1.0/pom.xml                    | 110 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  12 --
 lucene-queries-7.2.0/pom.xml                    | 110 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 ++
 pom.xml                                         |   1 +
 5 files changed, 123 insertions(+), 122 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/23cfb2ba/lucene-queries-7.1.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-queries-7.1.0/pom.xml b/lucene-queries-7.1.0/pom.xml
deleted file mode 100644
index 0749b75..0000000
--- a/lucene-queries-7.1.0/pom.xml
+++ /dev/null
@@ -1,110 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.lucene-queries</artifactId>
-    <version>7.1.0_2-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>7.1.0</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/23cfb2ba/lucene-queries-7.1.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-queries-7.1.0/src/main/resources/OSGI-INF/bundle.info b/lucene-queries-7.1.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index ff8c068..0000000
--- a/lucene-queries-7.1.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,12 +0,0 @@
-\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/23cfb2ba/lucene-queries-7.2.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-queries-7.2.0/pom.xml b/lucene-queries-7.2.0/pom.xml
new file mode 100644
index 0000000..00b22f5
--- /dev/null
+++ b/lucene-queries-7.2.0/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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.lucene-queries</artifactId>
+    <version>7.2.0_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>7.2.0</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/23cfb2ba/lucene-queries-7.2.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-queries-7.2.0/src/main/resources/OSGI-INF/bundle.info b/lucene-queries-7.2.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..ff8c068
--- /dev/null
+++ b/lucene-queries-7.2.0/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/23cfb2ba/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index eef0b9f..b14d565 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,6 +53,7 @@
         <module>elasticsearch-client-6.1.1</module>
         <module>lucene-7.2.0</module>
         <module>lucene-analyzers-common-7.2.0</module>
+        <module>lucene-queries-7.2.0</module>
     </modules>
 
 </project>


[2/5] servicemix-bundles git commit: [SM-3576] Create OSGi bundles for Lucene 7.2.0 - lucene-analyzers-common bundle

Posted by ac...@apache.org.
[SM-3576] Create OSGi bundles for Lucene 7.2.0 - lucene-analyzers-common bundle


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/4d1c3bdf
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/4d1c3bdf
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/4d1c3bdf

Branch: refs/heads/master
Commit: 4d1c3bdf23cfb35e451307a8fc991e243dfb7579
Parents: 10c0d09
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 22 10:28:54 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 22 10:28:54 2017 +0100

----------------------------------------------------------------------
 lucene-analyzers-common-7.1.0/pom.xml           | 116 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  12 --
 lucene-analyzers-common-7.2.0/pom.xml           | 116 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 ++
 pom.xml                                         |   1 +
 5 files changed, 129 insertions(+), 128 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/4d1c3bdf/lucene-analyzers-common-7.1.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-analyzers-common-7.1.0/pom.xml b/lucene-analyzers-common-7.1.0/pom.xml
deleted file mode 100644
index c4a6774..0000000
--- a/lucene-analyzers-common-7.1.0/pom.xml
+++ /dev/null
@@ -1,116 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.lucene-analyzers-common</artifactId>
-    <version>7.1.0_2-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>7.1.0</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*;-split-package:=merge-first
-        </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/4d1c3bdf/lucene-analyzers-common-7.1.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-analyzers-common-7.1.0/src/main/resources/OSGI-INF/bundle.info b/lucene-analyzers-common-7.1.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index ff8c068..0000000
--- a/lucene-analyzers-common-7.1.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,12 +0,0 @@
-\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/4d1c3bdf/lucene-analyzers-common-7.2.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-analyzers-common-7.2.0/pom.xml b/lucene-analyzers-common-7.2.0/pom.xml
new file mode 100644
index 0000000..e4b8443
--- /dev/null
+++ b/lucene-analyzers-common-7.2.0/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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.lucene-analyzers-common</artifactId>
+    <version>7.2.0_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>7.2.0</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*;-split-package:=merge-first
+        </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/4d1c3bdf/lucene-analyzers-common-7.2.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-analyzers-common-7.2.0/src/main/resources/OSGI-INF/bundle.info b/lucene-analyzers-common-7.2.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..ff8c068
--- /dev/null
+++ b/lucene-analyzers-common-7.2.0/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/4d1c3bdf/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1251b88..eef0b9f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,6 +52,7 @@
         <module>elasticsearch-6.1.1</module>
         <module>elasticsearch-client-6.1.1</module>
         <module>lucene-7.2.0</module>
+        <module>lucene-analyzers-common-7.2.0</module>
     </modules>
 
 </project>


[5/5] servicemix-bundles git commit: [SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene Sandbox bundle

Posted by ac...@apache.org.
[SM-3576] Create OSGi bundles for Lucene 7.2.0 - Lucene Sandbox bundle


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/1041a861
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/1041a861
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/1041a861

Branch: refs/heads/master
Commit: 1041a86188f1c11ef420292d23b9ed6bd6e849ae
Parents: 32d6306
Author: Andrea Cosentino <an...@gmail.com>
Authored: Fri Dec 22 10:35:55 2017 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Fri Dec 22 10:35:55 2017 +0100

----------------------------------------------------------------------
 lucene-sandbox-7.1.0/pom.xml                    | 111 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  12 --
 lucene-sandbox-7.2.0/pom.xml                    | 111 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  12 ++
 pom.xml                                         |   1 +
 5 files changed, 124 insertions(+), 123 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/1041a861/lucene-sandbox-7.1.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-sandbox-7.1.0/pom.xml b/lucene-sandbox-7.1.0/pom.xml
deleted file mode 100644
index 8fc5b12..0000000
--- a/lucene-sandbox-7.1.0/pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-<?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>13</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.lucene-sandbox</artifactId>
-    <version>7.1.0_2-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>7.1.0</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/1041a861/lucene-sandbox-7.1.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-sandbox-7.1.0/src/main/resources/OSGI-INF/bundle.info b/lucene-sandbox-7.1.0/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index ff8c068..0000000
--- a/lucene-sandbox-7.1.0/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,12 +0,0 @@
-\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/1041a861/lucene-sandbox-7.2.0/pom.xml
----------------------------------------------------------------------
diff --git a/lucene-sandbox-7.2.0/pom.xml b/lucene-sandbox-7.2.0/pom.xml
new file mode 100644
index 0000000..400eb68
--- /dev/null
+++ b/lucene-sandbox-7.2.0/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>13</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.lucene-sandbox</artifactId>
+    <version>7.2.0_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>7.2.0</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/1041a861/lucene-sandbox-7.2.0/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/lucene-sandbox-7.2.0/src/main/resources/OSGI-INF/bundle.info b/lucene-sandbox-7.2.0/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..ff8c068
--- /dev/null
+++ b/lucene-sandbox-7.2.0/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/1041a861/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3a1e369..b7918f1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,6 +55,7 @@
         <module>lucene-analyzers-common-7.2.0</module>
         <module>lucene-queries-7.2.0</module>
         <module>lucene-queryparser-7.2.0</module>
+        <module>lucene-sandbox-7.2.0</module>
     </modules>
 
 </project>