Cleanup mongodb as it's now a bundle natively

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

Branch: refs/heads/master
Commit: c7fb9c40d3e4ae22148e26ae6249b9b1abcc216f
Parents: aa0344f
Author: Jean-Baptiste Onofré <[email protected]>
Authored: Mon Jul 3 08:05:35 2017 +0200
Committer: Jean-Baptiste Onofré <[email protected]>
Committed: Mon Jul 3 08:05:35 2017 +0200

----------------------------------------------------------------------
 mongodb-2.3/pom.xml                             | 123 -------------------
 .../src/main/resources/OSGI-INF/bundle.info     |  24 ----
 2 files changed, 147 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c7fb9c40/mongodb-2.3/pom.xml
----------------------------------------------------------------------
diff --git a/mongodb-2.3/pom.xml b/mongodb-2.3/pom.xml
deleted file mode 100644
index 2adb10e..0000000
--- a/mongodb-2.3/pom.xml
+++ /dev/null
@@ -1,123 +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>9-SNAPSHOT</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.mongodb</artifactId>
-    <version>2.3_4-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: mongodb</name>
-    <description>This OSGi bundle wraps bson, and mongo-java-driver 
${pkgVersion} jar files.</description>
-
-    <properties>
-        <pkgGroupId>org.mongodb</pkgGroupId>
-        <pkgVersion>2.3</pkgVersion>
-        <servicemix.osgi.export>
-            com.mongodb*;version=${pkgVersion};-split-package:=merge-first,
-            org.bson*;version=${pkgVersion};-split-package:=merge-first
-        </servicemix.osgi.export>
-        <servicemix.osgi.import.pkg>
-            org.testng;resolution:=optional,
-            org.testng.annotations;resolution:=optional,
-            javax.management
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>bson</artifactId>
-            <version>${pkgVersion}</version>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>mongo-java-driver</artifactId>
-            <version>${pkgVersion}</version>
-            <optional>true</optional>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>bson</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <optional>true</optional>
-        </dependency>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>mongo-java-driver</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <optional>true</optional>
-        </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}:bson</include>
-                                    
<include>${pkgGroupId}:mongo-java-driver</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:bson</artifact>
-                                    <excludes>
-                                        <exclude>**</exclude>
-                                    </excludes>
-                                </filter>
-                                <filter>
-                                    
<artifact>${pkgGroupId}:mongo-java-driver</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/c7fb9c40/mongodb-2.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/mongodb-2.3/src/main/resources/OSGI-INF/bundle.info 
b/mongodb-2.3/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 16230d9..0000000
--- a/mongodb-2.3/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,24 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URLs:
-        \u001B[33mmvn:${pkgGroupId}/bson/${pkgVersion}\u001B[0m
-        \u001B[33mmvn:${pkgGroupId}/mongo-java-driver/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    This bundle provides JDBC driver and classes allowing you to connect to a 
MongoDB database from Java code.
-
-    MongoDB (from "humongous") is a scalable, high-performance, open source, 
document-oriented database.
-    Written in C++, MongoDB features:
-
-        * Document-oriented storage: JSON-style documents with dynamic schemas 
offer simplicity and power.
-        * Full Index Support: Index on any attribute, just like you're used to.
-        * Replication & High Availability: Mirror across LANs and WANs for 
scale and peace of mind.
-        * Auto-Sharding: Scale horizontally without compromising functionality.
-        * Querying: Rich, document-based queries.
-        * Fast In-Place Updates: Atomic modifiers for contention-free 
performance.
-        * Map/Reduce: Flexible aggregation and data processing.
-        * GridFS: Store files of any size without complicating your stack.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://www.mongodb.org/\u001B[0m

Reply via email to