Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 7761cf3ef -> 86ae8b2ba


[SM-3419] Create OSGi bundle for neo4j 3.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/86ae8b2b
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/86ae8b2b
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/86ae8b2b

Branch: refs/heads/master
Commit: 86ae8b2ba5a38a02904b984f2a0d5455d923a897
Parents: 7761cf3
Author: Jean-Baptiste Onofré <[email protected]>
Authored: Tue Jul 4 08:04:25 2017 +0200
Committer: Jean-Baptiste Onofré <[email protected]>
Committed: Tue Jul 4 08:04:25 2017 +0200

----------------------------------------------------------------------
 neo4j-1.9.2/pom.xml                             | 222 ------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  21 --
 neo4j-3.2.1/pom.xml                             | 228 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  21 ++
 pom.xml                                         |   1 +
 5 files changed, 250 insertions(+), 243 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/86ae8b2b/neo4j-1.9.2/pom.xml
----------------------------------------------------------------------
diff --git a/neo4j-1.9.2/pom.xml b/neo4j-1.9.2/pom.xml
deleted file mode 100644
index 73b0d5b..0000000
--- a/neo4j-1.9.2/pom.xml
+++ /dev/null
@@ -1,222 +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>10</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.neo4j</artifactId>
-    <version>1.9.2_2-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: neo4j</name>
-    <description>
-        This OSGi bundle wraps neo4j-kernel, neo4j-lucene-index, 
neo4j-graph-algo, neo4j-udc,
-        neo4j-graph-matching, neo4j-cypher, neo4j-jmx ${pkgVersion} jar files.
-    </description>
-
-    <properties>
-        <pkgGroupId>org.neo4j</pkgGroupId>
-        <pkgVersion>1.9.2</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.neo4j
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            ch.qos.logback*;resolution:=optional,
-            com.googlecode*;resolution:=optional,
-            com.sun.source*;resolution:=optional,
-            com.sun.tools*;resolution:=optional,
-            javax.annotation*,
-            javax.lang*,
-            javax.management*,
-            javax.tools,
-            javax.transaction*,
-            org.apache.lucene*,
-            org.osgi.framework,
-            org.slf4j*;resolution:=optional,
-            scala*;resolution:=optional,
-            sun.misc;resolution:=optional,
-            com.sun.jersey.api.client;resolution:=optional, 
-            com.sun.jersey.api.client.filter;resolution:=optional, 
-            javax.ws.rs;resolution:=optional, 
-            javax.ws.rs.core;resolution:=optional, 
-            org.apache.commons.configuration;resolution:=optional, 
-            org.codehaus.jackson;resolution:=optional, 
-            org.codehaus.jackson.map;resolution:=optional,
-            com.mysema.query;resolution:=optional, 
-            com.mysema.query.lucene;resolution:=optional, 
-            com.mysema.query.types;resolution:=optional, 
-            com.mysema.query.types.path;resolution:=optional, 
-            org.codehaus.jackson.node;resolution:=optional
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <repositories>
-        <repository>
-            <id>neo4j.repo</id>
-            <name>neo4j Repository</name>
-            <url>http://m2.neo4j.org/content/repositories/releases</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-            <snapshots>
-                <enabled>false</enabled>
-            </snapshots>
-        </repository>
-    </repositories>    
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-kernel</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-lucene-index</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-graph-algo</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-udc</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-graph-matching</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-cypher</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-jmx</artifactId>
-            <version>${pkgVersion}</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-rest-graphdb</artifactId>
-            <version>1.9</version>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>neo4j-cypher-dsl</artifactId>
-            <version>1.9</version>
-        </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}:neo4j-kernel</include>
-                                    
<include>${pkgGroupId}:neo4j-lucene-index</include>
-                                    
<include>${pkgGroupId}:neo4j-graph-algo</include>
-                                    <include>${pkgGroupId}:neo4j-udc</include>
-                                    
<include>${pkgGroupId}:neo4j-graph-matching</include>
-                                    
<include>${pkgGroupId}:neo4j-cypher</include>
-                                    <include>${pkgGroupId}:neo4j-jmx</include>
-                                    
<include>${pkgGroupId}:neo4j-rest-graphdb</include>
-                                    
<include>${pkgGroupId}:neo4j-cypher-dsl</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:neo4j</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-kernel</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-lucene-index</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-graph-algo</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-udc</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-graph-matching</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-cypher</artifact>
-                                    <includes>
-                                        <include>**/*.xml</include>
-                                    </includes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:neo4j-jmx</artifact>
-                                    <includes>
-                                        <include>**/*.xml</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/86ae8b2b/neo4j-1.9.2/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/neo4j-1.9.2/src/main/resources/OSGI-INF/bundle.info 
b/neo4j-1.9.2/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index cb557b2..0000000
--- a/neo4j-1.9.2/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,21 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/neo4j-kernel/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/neo4j-lucene-index/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/neo4j-graph-algo/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/neo4j-udc/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/neo4j-graph-matching/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/neo4j-cypher/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/neo4j-jmx/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Neo4j is an open-source, high-performance, enterprise-grade NOSQL graph 
database.
-
-    Neo4j is a robust (fully ACID) transactional property graph database. Due 
to its graph data model,
-    Neo4j is highly agile and blazing fast. For connected data operations, 
Neo4j runs a thousand times
-    faster than relational databases.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.neo4j.org/\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/86ae8b2b/neo4j-3.2.1/pom.xml
----------------------------------------------------------------------
diff --git a/neo4j-3.2.1/pom.xml b/neo4j-3.2.1/pom.xml
new file mode 100644
index 0000000..3ce9c8f
--- /dev/null
+++ b/neo4j-3.2.1/pom.xml
@@ -0,0 +1,228 @@
+<?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.neo4j</artifactId>
+    <version>3.2.1_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: neo4j</name>
+    <description>
+        This OSGi bundle wraps neo4j-kernel, neo4j-lucene-index, 
neo4j-graph-algo, neo4j-udc,
+        neo4j-graph-matching, neo4j-cypher, neo4j-jmx ${pkgVersion} jar files.
+    </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>
+    </scm>
+
+    <properties>
+        <pkgGroupId>org.neo4j</pkgGroupId>
+        <pkgVersion>3.2.1</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            org.neo4j
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            ch.qos.logback*;resolution:=optional,
+            com.googlecode*;resolution:=optional,
+            com.sun.source*;resolution:=optional,
+            com.sun.tools*;resolution:=optional,
+            javax.annotation*,
+            javax.lang*,
+            javax.management*,
+            javax.tools,
+            javax.transaction*,
+            org.apache.lucene*,
+            org.osgi.framework,
+            org.slf4j*;resolution:=optional,
+            scala*;resolution:=optional,
+            sun.misc;resolution:=optional,
+            com.sun.jersey.api.client;resolution:=optional, 
+            com.sun.jersey.api.client.filter;resolution:=optional, 
+            javax.ws.rs;resolution:=optional, 
+            javax.ws.rs.core;resolution:=optional, 
+            org.apache.commons.configuration;resolution:=optional, 
+            org.codehaus.jackson;resolution:=optional, 
+            org.codehaus.jackson.map;resolution:=optional,
+            com.mysema.query;resolution:=optional, 
+            com.mysema.query.lucene;resolution:=optional, 
+            com.mysema.query.types;resolution:=optional, 
+            com.mysema.query.types.path;resolution:=optional, 
+            org.codehaus.jackson.node;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <repositories>
+        <repository>
+            <id>neo4j.repo</id>
+            <name>neo4j Repository</name>
+            <url>http://m2.neo4j.org/content/repositories/releases</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>    
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-kernel</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-lucene-index</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-graph-algo</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-udc</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-graph-matching</artifactId>
+            <version>3.1.5</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-cypher</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-jmx</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-rest-graphdb</artifactId>
+            <version>1.9</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>neo4j-cypher-dsl</artifactId>
+            <version>1.9</version>
+        </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}:neo4j-kernel</include>
+                                    
<include>${pkgGroupId}:neo4j-lucene-index</include>
+                                    
<include>${pkgGroupId}:neo4j-graph-algo</include>
+                                    <include>${pkgGroupId}:neo4j-udc</include>
+                                    
<include>${pkgGroupId}:neo4j-graph-matching</include>
+                                    
<include>${pkgGroupId}:neo4j-cypher</include>
+                                    <include>${pkgGroupId}:neo4j-jmx</include>
+                                    
<include>${pkgGroupId}:neo4j-rest-graphdb</include>
+                                    
<include>${pkgGroupId}:neo4j-cypher-dsl</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:neo4j</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-kernel</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-lucene-index</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-graph-algo</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-udc</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-graph-matching</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-cypher</artifact>
+                                    <includes>
+                                        <include>**/*.xml</include>
+                                    </includes>
+                                </filter>
+                                <filter>
+                                    
<artifact>${pkgGroupId}:neo4j-jmx</artifact>
+                                    <includes>
+                                        <include>**/*.xml</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/86ae8b2b/neo4j-3.2.1/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/neo4j-3.2.1/src/main/resources/OSGI-INF/bundle.info 
b/neo4j-3.2.1/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..cb557b2
--- /dev/null
+++ b/neo4j-3.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}/neo4j-kernel/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/neo4j-lucene-index/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/neo4j-graph-algo/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/neo4j-udc/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/neo4j-graph-matching/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/neo4j-cypher/${pkgVersion}\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/neo4j-jmx/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Neo4j is an open-source, high-performance, enterprise-grade NOSQL graph 
database.
+
+    Neo4j is a robust (fully ACID) transactional property graph database. Due 
to its graph data model,
+    Neo4j is highly agile and blazing fast. For connected data operations, 
Neo4j runs a thousand times
+    faster than relational databases.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://www.neo4j.org/\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/86ae8b2b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index eb64299..3badca9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,6 +109,7 @@
         <module>jung-api-2.1.1</module>
         <module>jung-graph-impl-2.1.1</module>
         <module>influxdb-java-2.7</module>
+        <module>neo4j-3.2.1</module>
     </modules>
 
 </project>

Reply via email to