You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stanbol.apache.org by su...@apache.org on 2011/12/08 09:02:53 UTC

svn commit: r1211776 - in /incubator/stanbol/trunk: ./ launchers/basebundlelist/ launchers/bundlelists/ launchers/bundlelists/osgiframework/ launchers/bundlelists/osgiframework/src/ launchers/bundlelists/osgiframework/src/main/ launchers/bundlelists/os...

Author: suat
Date: Thu Dec  8 08:02:53 2011
New Revision: 1211776

URL: http://svn.apache.org/viewvc?rev=1211776&view=rev
Log:
STANBOL-344:
Removed the base bundle list, instead I separated the previous list into two partial bundle lists. The aim is to make Stanbol adoption easier in other OSGi environments using their own default bundle list. 

The first list contains only felix and sling log bundles (OSGi framework) and the second one contains the remaining bundles in the previous base bundle list i.e commonly used bundles throughout Stanbol.

Added:
    incubator/stanbol/trunk/launchers/bundlelists/
    incubator/stanbol/trunk/launchers/bundlelists/osgiframework/   (with props)
    incubator/stanbol/trunk/launchers/bundlelists/osgiframework/pom.xml
    incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/
    incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/
    incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/bundles/
    incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/bundles/list.xml
    incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/   (with props)
    incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/pom.xml
    incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/
    incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/
    incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/bundles/
    incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/bundles/list.xml
Removed:
    incubator/stanbol/trunk/launchers/basebundlelist/
Modified:
    incubator/stanbol/trunk/launchers/framework/pom.xml
    incubator/stanbol/trunk/launchers/full-war/pom.xml
    incubator/stanbol/trunk/launchers/full/pom.xml
    incubator/stanbol/trunk/launchers/stable/pom.xml
    incubator/stanbol/trunk/launchers/stateless/pom.xml
    incubator/stanbol/trunk/parent/pom.xml
    incubator/stanbol/trunk/pom.xml

Propchange: incubator/stanbol/trunk/launchers/bundlelists/osgiframework/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Dec  8 08:02:53 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/launchers/bundlelists/osgiframework/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/bundlelists/osgiframework/pom.xml?rev=1211776&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/bundlelists/osgiframework/pom.xml (added)
+++ incubator/stanbol/trunk/launchers/bundlelists/osgiframework/pom.xml Thu Dec  8 08:02:53 2011
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9.0-incubating-SNAPSHOT</version>
+    <relativePath>../../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+  <packaging>partialbundlelist</packaging>
+
+  <name>Apache Stanbol OSGi Framework Bundle List </name>
+  <description>This is a Maven project which produces the partial list containing the OSGi framework bundles</description>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/bundlelists/osgiframework
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/bundlelists/osgiframework
+    </developerConnection>
+    <url>http://incubator.apache.org/stanbol/</url>
+  </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>maven-launchpad-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-bundle-list</id>
+            <goals>
+              <goal>attach-bundle-list</goal>
+            </goals>
+            <configuration>
+              <includeDefaultBundles>false</includeDefaultBundles>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/bundles/list.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/bundles/list.xml?rev=1211776&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/bundles/list.xml (added)
+++ incubator/stanbol/trunk/launchers/bundlelists/osgiframework/src/main/bundles/list.xml Thu Dec  8 08:02:53 2011
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<bundles>
+  <!-- OSGi infrastructure -->
+  <startLevel level="5">
+    <bundle>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.commons.log</artifactId>
+      <version>2.1.2</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>1.4.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.scr</artifactId>
+      <version>1.6.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.configadmin</artifactId>
+      <version>1.2.8</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.metatype</artifactId>
+      <version>1.0.4</version>
+    </bundle>
+  </startLevel>
+
+  <!-- HTTP service and Http related Utilities -->
+  <startLevel level="5">
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.http.whiteboard</artifactId>
+      <version>2.2.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+      <version>1.4.0</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Felix web console and plugins -->
+  <startLevel level="9">
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.webconsole</artifactId>
+      <version>3.1.8</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.webconsole.plugins.memoryusage
+      </artifactId>
+      <version>1.0.2</version>
+    </bundle>
+  </startLevel>
+</bundles>
\ No newline at end of file

Propchange: incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Dec  8 08:02:53 2011
@@ -0,0 +1 @@
+target

Added: incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/pom.xml?rev=1211776&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/pom.xml (added)
+++ incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/pom.xml Thu Dec  8 08:02:53 2011
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9.0-incubating-SNAPSHOT</version>
+    <relativePath>../../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+  <packaging>partialbundlelist</packaging>
+
+  <name>Apache Stanbol OSGi Framework Bundle List </name>
+  <description>This is a Maven project which produces the partial list containing the common bundles that are used throughout the Stanbol.</description>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons
+    </developerConnection>
+    <url>http://incubator.apache.org/stanbol/</url>
+  </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>maven-launchpad-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-bundle-list</id>
+            <goals>
+              <goal>attach-bundle-list</goal>
+            </goals>
+            <configuration>
+              <includeDefaultBundles>false</includeDefaultBundles>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/bundles/list.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/bundles/list.xml?rev=1211776&view=auto
==============================================================================
--- incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/bundles/list.xml (added)
+++ incubator/stanbol/trunk/launchers/bundlelists/stanbolcommons/src/main/bundles/list.xml Thu Dec  8 08:02:53 2011
@@ -0,0 +1,364 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<bundles>
+  <startLevel level="5">
+    <!-- JDK Package Exporter -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.frameworkfragment</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+
+  <!-- HTTP service and Http related Utilities -->
+  <startLevel level="5">
+    <!-- Allows to parse Http Headers as QueryParameter -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.httpqueryheaders
+      </artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Sling installer and Stanbol extensions -->
+  <startLevel level="8">
+    <bundle>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.installer.core</artifactId>
+      <version>3.2.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.installer.factory.configuration
+      </artifactId>
+      <version>1.0.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.installer.bundleprovider
+      </artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.installer.provider.file</artifactId>
+      <version>1.0.0</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Felix web console and plugins -->
+  <startLevel level="9">
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.webconsole</artifactId>
+      <version>3.1.8</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.webconsole.plugins.memoryusage
+      </artifactId>
+      <version>1.0.2</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Sling launchpad -->
+  <startLevel level="9">
+    <bundle>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.launchpad.installer</artifactId>
+      <version>1.0.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.launchpad.api</artifactId>
+      <version>1.0.0</version>
+    </bundle>
+  </startLevel>
+
+  <!-- ********************************************************************* 
+    start level 10 TO 19 reserved for required libraries (internal and external) 
+    ********************************************************************* -->
+  <!-- General-purpose libraries -->
+  <startLevel level="10">
+    <bundle>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+      <version>1.2</version>
+    </bundle>
+    <bundle>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.4</version>
+    </bundle>
+    <bundle>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>3.2.1</version>
+    </bundle>
+    <bundle>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>1.4</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+      <version>1.0</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore-osgi</artifactId>
+      <version>4.0.1</version>
+    </bundle>
+    <bundle>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.5</version>
+    </bundle>
+    <bundle>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.2.2</version>
+    </bundle>
+    <bundle> <!-- only used by the Entityhub -->
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+      <version>1.6.2</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Jersey -->
+  <startLevel level="14">
+    <!-- NOTE: jersey-core bug, must start before jersey-server to avoid 
+      jersey spi class not found errors. Restart jersey-server manually if getting 
+      those. -->
+    <bundle>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-core</artifactId>
+      <version>1.7</version>
+    </bundle>
+    <bundle>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+      <version>1.9.2</version>
+    </bundle>
+    <bundle>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+      <version>1.9.2</version>
+    </bundle>
+    <bundle>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-jaxrs</artifactId>
+      <version>1.9.2</version>
+    </bundle>
+  </startLevel>
+  <startLevel level="15">
+    <bundle>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-server</artifactId>
+      <version>1.7</version>
+    </bundle>
+    <!-- needed to read data from mime multipart requests -->
+    <bundle>
+      <groupId>com.sun.jersey.contribs</groupId>
+      <artifactId>jersey-multipart</artifactId>
+      <version>1.7</version>
+    </bundle>
+    <!-- dependency of jersey-multipart -->
+    <bundle>
+      <groupId>org.jvnet</groupId>
+      <artifactId>mimepull</artifactId>
+      <version>1.4</version>
+    </bundle>
+    <bundle> <!-- used also for all the other JSON parsing/writing in Stanbol -->
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+      <version>1.3</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Clerezza storage and sparql infrastructure -->
+  <startLevel level="16">
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.core</artifactId>
+      <version>0.12-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.utils</artifactId>
+      <version>0.13-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>utils</artifactId>
+      <version>0.1-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.ontologies</artifactId>
+      <version>0.11-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.sparql</artifactId>
+      <version>0.5-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.commons</artifactId>
+      <version>0.5-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.facade</artifactId>
+      <version>0.12-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza.ext</groupId>
+      <artifactId>com.hp.hpl.jena.tdb</artifactId>
+      <version>0.3-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza.ext</groupId>
+      <artifactId>javax.mail</artifactId>
+      <version>0.4-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.wymiwyg</groupId>
+      <artifactId>wymiwyg-commons-core</artifactId>
+      <version>0.7.5</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza.ext</groupId>
+      <artifactId>com.ibm.icu</artifactId>
+      <version>0.5-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.storage</artifactId>
+      <version>0.5-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.tdb.storage</artifactId>
+      <version>0.5-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.serializer</artifactId>
+      <version>0.9-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.jena.parser</artifactId>
+      <version>0.10-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza</groupId>
+      <artifactId>rdf.rdfjson</artifactId>
+      <version>0.3-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.clerezza.ext</groupId>
+      <artifactId>org.json.simple</artifactId>
+      <version>0.3-incubating-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+
+  <!-- Stanbol Commons -->
+  <startLevel level="17">
+    <!-- Allows to run Stanbol in offline mode -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.stanboltools.offline
+      </artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <!-- DataFileProvider and implementations -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.stanboltools.datafileprovider
+      </artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.stanboltools.datafileprovider.bundle
+      </artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <!-- OpenNLP as bundle + utilities -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.opennlp</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <!-- Apache Solr as bundle + utilities -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.solr.core</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.solr.managed</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.solr.install</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.solr.web</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <!-- support for JSON-LD -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.jsonld</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <!-- Support for Jobs -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.jobs.api</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.jobs.web</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <!-- The common web interface -->
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.web.base</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.commons.web.home</artifactId>
+      <version>0.9.0-incubating-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+</bundles>
\ No newline at end of file

Modified: incubator/stanbol/trunk/launchers/framework/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/framework/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/framework/pom.xml (original)
+++ incubator/stanbol/trunk/launchers/framework/pom.xml Thu Dec  8 08:02:53 2011
@@ -16,7 +16,7 @@
   limitations under the License.
 -->
 <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/maven-v4_0_0.xsd">
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.stanbol</groupId>
@@ -66,10 +66,10 @@
         <groupId>org.apache.sling</groupId>
         <artifactId>maven-launchpad-plugin</artifactId>
         <!--
-            TODO the maven-launchpad-plugin can also generate a war file and
-            Karaf description, we could add this. See
-            http://sling.apache.org/site/maven-launchpad-plugin.html
-          -->
+          TODO the maven-launchpad-plugin can also generate a war file and
+          Karaf description, we could add this. See
+          http://sling.apache.org/site/maven-launchpad-plugin.html
+        -->
         <executions>
           <execution>
             <id>prepare-package</id>
@@ -77,18 +77,13 @@
               <goal>prepare-package</goal>
             </goals>
             <configuration>
-              <includeDefaultBundles>true</includeDefaultBundles>
+              <includeDefaultBundles>false</includeDefaultBundles>
               <!-- Standalone jar requires an OSGi http service implementation -->
               <jarWebSupport>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>org.apache.felix.http.jetty</artifactId>
                 <version>2.2.0</version>
               </jarWebSupport>
-              <defaultBundleList>
-						    <groupId>org.apache.stanbol</groupId>
-						    <artifactId>org.apache.stanbol.launchers.basebundlelist</artifactId>
-						    <version>0.9.0-incubating-SNAPSHOT</version>
-						  </defaultBundleList>
             </configuration>
           </execution>
         </executions>
@@ -119,6 +114,16 @@
     </dependency>
     <dependency>
       <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
       <artifactId>org.apache.stanbol.entityhub.bundlelist</artifactId>
       <type>partialbundlelist</type>
     </dependency>

Modified: incubator/stanbol/trunk/launchers/full-war/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full-war/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/full-war/pom.xml (original)
+++ incubator/stanbol/trunk/launchers/full-war/pom.xml Thu Dec  8 08:02:53 2011
@@ -1,180 +1,193 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!-- 
-	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. 
+<!--
+  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.
 -->
 <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/maven-v4_0_0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<parent>
-		<groupId>org.apache.stanbol</groupId>
-		<artifactId>stanbol-parent</artifactId>
-		<version>0.9.0-incubating-SNAPSHOT</version>
-		<relativePath>../../parent</relativePath>
-	</parent>
-
-	<groupId>org.apache.stanbol</groupId>
-	<artifactId>org.apache.stanbol.launchers.full-war</artifactId>
-	<packaging>war</packaging>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.stanbol</groupId>
+    <artifactId>stanbol-parent</artifactId>
+    <version>0.9.0-incubating-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
+  </parent>
+
+  <groupId>org.apache.stanbol</groupId>
+  <artifactId>org.apache.stanbol.launchers.full-war</artifactId>
+  <packaging>war</packaging>
 
-	<name>Apache Stanbol Launcher - Full WAR</name>
-	<description>WAR packaging for Apache Stanbol Full Launcher</description>
+  <name>Apache Stanbol Launcher - Full WAR</name>
+  <description>WAR packaging for Apache Stanbol Full Launcher</description>
 
-	<scm>
-		<connection>
+  <scm>
+    <connection>
       scm:svn:http://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/full/
     </connection>
-		<developerConnection>
+    <developerConnection>
       scm:svn:https://svn.apache.org/repos/asf/incubator/stanbol/trunk/launchers/full/
     </developerConnection>
-		<url>http://incubator.apache.org/stanbol/</url>
-	</scm>
+    <url>http://incubator.apache.org/stanbol/</url>
+  </scm>
 
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.sling</groupId>
-				<artifactId>maven-launchpad-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>prepare-package</id>
-						<goals>
-							<goal>prepare-package</goal>
-						</goals>
-						<configuration>
-							<includeDefaultBundles>true</includeDefaultBundles>
-							<!-- Standalone jar requires an OSGi http service implementation -->
-							<jarWebSupport>
-								<groupId>org.apache.felix</groupId>
-								<artifactId>org.apache.felix.http.jetty</artifactId>
-								<version>2.2.0</version>
-							</jarWebSupport>
-							<defaultBundleList>
-								<groupId>org.apache.stanbol</groupId>
-								<artifactId>org.apache.stanbol.launchers.basebundlelist</artifactId>
-								<version>0.9.0-incubating-SNAPSHOT</version>
-							</defaultBundleList>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-jar-plugin</artifactId>
-				<configuration>
-					<archive>
-						<manifest>
-							<!-- make the generated jar runnable -->
-							<addClasspath>true</addClasspath>
-							<mainClass>org.apache.sling.launchpad.app.Main</mainClass>
-							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-						</manifest>
-					</archive>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-war-plugin</artifactId>
-				<configuration>
-					<packagingExcludes>WEB-INF/classes/META-INF/*</packagingExcludes>
-					<warName>stanbol</warName>
-					<webResources>
-						<resource>
-							<directory>
-								${project.build.directory}/launchpad-bundles
-						  </directory>
-							<targetPath>WEB-INF</targetPath>
-						</resource>
-						<resource>
-							<directory>${project.build.outputDirectory}/META-INF</directory>
-							<targetPath>META-INF</targetPath>
-						</resource>
-					</webResources>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.rat</groupId>
-				<artifactId>apache-rat-plugin</artifactId>
-				<configuration>
-					<excludes>
-						<!-- License provided in src/main/resources/README -->
-						<exclude>src/main/resources/resources/config/org.apache.stanbol.commons.solr.managed.impl.ManagedSolrServerImpl-default.config</exclude>
-						<exclude>src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg</exclude>
-						<exclude>src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config</exclude>
-						<exclude>src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config</exclude>
-						<exclude>src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config</exclude>
-                        <exclude>src/main/resources/resources/config/org.apache.stanbol.commons.solr.web.impl.SolrDispatchFilterComponent-default.config</exclude>
-					</excludes>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.sling</groupId>
-			<artifactId>org.apache.sling.launchpad.base</artifactId>
-			<version>2.3.0</version>
-			<classifier>webapp</classifier>
-			<type>war</type>
-			<scope>runtime</scope>
-		</dependency>
-
-		<!-- Stanbol CMS Adapter Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.cmsadapter.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-
-		<!-- Stanbol Contenthub Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.contenthub.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-
-		<!-- Stanbol Data Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.data.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-
-		<!-- Stanbol Enhancer Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.enhancer.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-
-		<!-- Stanbol Entityhub Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.entityhub.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-
-		<!-- Stanbol Ontology Manager Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.ontologymanager.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-
-		<!-- Stanbol Rules Bundle List -->
-		<dependency>
-			<groupId>org.apache.stanbol</groupId>
-			<artifactId>org.apache.stanbol.rules.bundlelist</artifactId>
-			<type>partialbundlelist</type>
-		</dependency>
-	</dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>maven-launchpad-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>prepare-package</id>
+            <goals>
+              <goal>prepare-package</goal>
+            </goals>
+            <configuration>
+              <includeDefaultBundles>false</includeDefaultBundles>
+              <!-- Standalone jar requires an OSGi http service implementation -->
+              <jarWebSupport>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.apache.felix.http.jetty</artifactId>
+                <version>2.2.0</version>
+              </jarWebSupport>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifest>
+              <!-- make the generated jar runnable -->
+              <addClasspath>true</addClasspath>
+              <mainClass>org.apache.sling.launchpad.app.Main</mainClass>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+            </manifest>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <packagingExcludes>WEB-INF/classes/META-INF/*</packagingExcludes>
+          <warName>stanbol</warName>
+          <webResources>
+            <resource>
+              <directory>
+                ${project.build.directory}/launchpad-bundles
+        		  </directory>
+              <targetPath>WEB-INF</targetPath>
+            </resource>
+            <resource>
+              <directory>${project.build.outputDirectory}/META-INF</directory>
+              <targetPath>META-INF</targetPath>
+            </resource>
+          </webResources>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <!-- License provided in src/main/resources/README -->
+            <exclude>src/main/resources/resources/config/org.apache.stanbol.commons.solr.managed.impl.ManagedSolrServerImpl-default.config</exclude>
+            <exclude>src/main/resources/resources/config/org.apache.stanbol.examples.ExampleBootstrapConfig.cfg</exclude>
+            <exclude>src/main/resources/resources/config/org.apache.stanbol.entityhub.core.impl.EntityhubConfigurationImpl.config</exclude>
+            <exclude>src/main/resources/resources/config/org.apache.stanbol.enhancer.engines.entitytagging.impl.NamedEntityTaggingEngine-local.config</exclude>
+            <exclude>src/main/resources/resources/config/org.apache.stanbol.entityhub.yard.solr.impl.SolrYard-entityhub.config</exclude>
+            <exclude>src/main/resources/resources/config/org.apache.stanbol.commons.solr.web.impl.SolrDispatchFilterComponent-default.config</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.launchpad.base</artifactId>
+      <version>2.3.0</version>
+      <classifier>webapp</classifier>
+      <type>war</type>
+      <scope>runtime</scope>
+    </dependency>
+
+    <!-- OSGi Framemework Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Commons Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol CMS Adapter Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.cmsadapter.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Contenthub Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.contenthub.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Data Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.data.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Enhancer Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.enhancer.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Entityhub Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Ontology Manager Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.ontologymanager.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Rules Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.rules.bundlelist</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+  </dependencies>
 </project>

Modified: incubator/stanbol/trunk/launchers/full/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/full/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/full/pom.xml (original)
+++ incubator/stanbol/trunk/launchers/full/pom.xml Thu Dec  8 08:02:53 2011
@@ -16,7 +16,7 @@
   limitations under the License.
 -->
 <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/maven-v4_0_0.xsd">
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.stanbol</groupId>
@@ -64,10 +64,10 @@
         <groupId>org.apache.sling</groupId>
         <artifactId>maven-launchpad-plugin</artifactId>
         <!--
-            TODO the maven-launchpad-plugin can also generate a war file and
-            Karaf description, we could add this. See
-            http://sling.apache.org/site/maven-launchpad-plugin.html
-          -->
+          TODO the maven-launchpad-plugin can also generate a war file and
+          Karaf description, we could add this. See
+          http://sling.apache.org/site/maven-launchpad-plugin.html
+        -->
         <executions>
           <execution>
             <id>prepare-package</id>
@@ -75,18 +75,13 @@
               <goal>prepare-package</goal>
             </goals>
             <configuration>
-              <includeDefaultBundles>true</includeDefaultBundles>
+              <includeDefaultBundles>false</includeDefaultBundles>
               <!-- Standalone jar requires an OSGi http service implementation -->
               <jarWebSupport>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>org.apache.felix.http.jetty</artifactId>
                 <version>2.2.0</version>
               </jarWebSupport>
-              <defaultBundleList>
-						    <groupId>org.apache.stanbol</groupId>
-						    <artifactId>org.apache.stanbol.launchers.basebundlelist</artifactId>
-						    <version>0.9.0-incubating-SNAPSHOT</version>
-						  </defaultBundleList>  
             </configuration>
           </execution>
         </executions>
@@ -119,7 +114,7 @@
             <exclude>src/main/resources/resources/config/org.apache.stanbol.commons.solr.web.impl.SolrDispatchFilterComponent-default.config</exclude>
           </excludes>
         </configuration>
-      </plugin>      
+      </plugin>
     </plugins>
   </build>
 
@@ -131,6 +126,22 @@
       <classifier>app</classifier>
     </dependency>
     
+    <!-- OSGi Framemework Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+    
+    <!-- Stanbol Commons Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+
     <!-- Stanbol CMS Adapter Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>
@@ -162,7 +173,7 @@
       <type>partialbundlelist</type>
       <scope>provided</scope>
     </dependency>
-    
+
     <!-- Stanbol Entityhub Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>
@@ -178,7 +189,7 @@
       <type>partialbundlelist</type>
       <scope>provided</scope>
     </dependency>
-    
+
     <!-- Stanbol Ontology Manager Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>
@@ -186,7 +197,7 @@
       <type>partialbundlelist</type>
       <scope>provided</scope>
     </dependency>
-    
+
     <!-- Stanbol Rules Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>

Modified: incubator/stanbol/trunk/launchers/stable/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stable/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/stable/pom.xml (original)
+++ incubator/stanbol/trunk/launchers/stable/pom.xml Thu Dec  8 08:02:53 2011
@@ -16,7 +16,7 @@
   limitations under the License.
 -->
 <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/maven-v4_0_0.xsd">
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.stanbol</groupId>
@@ -74,18 +74,13 @@
               <goal>attach-bundle-list</goal>
             </goals>
             <configuration>
-              <includeDefaultBundles>true</includeDefaultBundles>
+              <includeDefaultBundles>false</includeDefaultBundles>
               <!-- Standalone jar requires an OSGi http service implementation -->
               <jarWebSupport>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>org.apache.felix.http.jetty</artifactId>
                 <version>2.2.0</version>
               </jarWebSupport>
-              <defaultBundleList>
-                <groupId>org.apache.stanbol</groupId>
-                <artifactId>org.apache.stanbol.launchers.basebundlelist</artifactId>
-                <version>0.9.0-incubating-SNAPSHOT</version>
-              </defaultBundleList>
             </configuration>
           </execution>
         </executions>
@@ -129,6 +124,21 @@
       <artifactId>org.apache.sling.launchpad.base</artifactId>
       <classifier>app</classifier>
     </dependency>
+
+    <!-- OSGi Framemework Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
+    <!-- Stanbol Commons Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+
     <dependency>
       <groupId>org.apache.stanbol</groupId>
       <artifactId>org.apache.stanbol.data.bundlelist</artifactId>

Modified: incubator/stanbol/trunk/launchers/stateless/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/launchers/stateless/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/launchers/stateless/pom.xml (original)
+++ incubator/stanbol/trunk/launchers/stateless/pom.xml Thu Dec  8 08:02:53 2011
@@ -73,18 +73,13 @@
               <goal>prepare-package</goal>
             </goals>
             <configuration>
-              <includeDefaultBundles>true</includeDefaultBundles>
+              <includeDefaultBundles>false</includeDefaultBundles>
               <!-- Standalone jar requires an OSGi http service implementation -->
               <jarWebSupport>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>org.apache.felix.http.jetty</artifactId>
                 <version>2.2.0</version>
               </jarWebSupport>
-              <defaultBundleList>
-			    <groupId>org.apache.stanbol</groupId>
-			    <artifactId>org.apache.stanbol.launchers.basebundlelist</artifactId>
-			    <version>0.9.0-incubating-SNAPSHOT</version>
-			 </defaultBundleList>
             </configuration>
           </execution>
         </executions>
@@ -113,5 +108,19 @@
       <artifactId>org.apache.sling.launchpad.base</artifactId>
       <classifier>app</classifier>
     </dependency>
+    
+    <!-- OSGi Framemework Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
+    
+    <!-- Stanbol Commons Bundle List -->
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+      <type>partialbundlelist</type>
+    </dependency>
   </dependencies>
 </project>

Modified: incubator/stanbol/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/parent/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/parent/pom.xml (original)
+++ incubator/stanbol/trunk/parent/pom.xml Thu Dec  8 08:02:53 2011
@@ -506,6 +506,18 @@
       <!-- Partial bundle list dependencies -->
       <dependency>
         <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.launchers.bundlelists.osgiframework</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+        <type>partialbundlelist</type>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
+        <artifactId>org.apache.stanbol.launchers.bundlelists.stanbolcommons</artifactId>
+        <version>0.9.0-incubating-SNAPSHOT</version>
+        <type>partialbundlelist</type>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.stanbol</groupId>
         <artifactId>org.apache.stanbol.cmsadapter.bundlelist</artifactId>
         <version>0.9.0-incubating-SNAPSHOT</version>
         <type>partialbundlelist</type>

Modified: incubator/stanbol/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/stanbol/trunk/pom.xml?rev=1211776&r1=1211775&r2=1211776&view=diff
==============================================================================
--- incubator/stanbol/trunk/pom.xml (original)
+++ incubator/stanbol/trunk/pom.xml Thu Dec  8 08:02:53 2011
@@ -91,7 +91,8 @@
 
         <module>enhancer/engines</module>
 
-        <module>launchers/basebundlelist</module>
+        <module>launchers/bundlelists/osgiframework</module>
+        <module>launchers/bundlelists/stanbolcommons</module>
         <module>launchers/stable</module>
         <module>launchers/stateless</module>
         <module>launchers/full</module>