Author: rwesten
Date: Mon Dec 16 09:28:52 2013
New Revision: 1551137

URL: http://svn.apache.org/r1551137
Log:
STANBOL-1237, STANBOL-1165: Splited up Entityhub bundlelist in three parts: (1) 
core dependencies currently including the SolrYard (2) Clerezza 
implementationand (3) Sesame implementation as provided by STANBOL-1165; Also 
adapted the Launchers accordingly.

Added:
    stanbol/trunk/launchers/bundlelists/entityhub/clerezza/   (with props)
    stanbol/trunk/launchers/bundlelists/entityhub/clerezza/pom.xml   (with 
props)
    stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/
    stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/
    stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/bundles/
    
stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/bundles/list.xml
    stanbol/trunk/launchers/bundlelists/entityhub/core/   (with props)
    stanbol/trunk/launchers/bundlelists/entityhub/core/pom.xml   (with props)
    stanbol/trunk/launchers/bundlelists/entityhub/core/src/
    stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/
    stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/bundles/
    stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/bundles/list.xml
    stanbol/trunk/launchers/bundlelists/entityhub/sesame/   (with props)
    stanbol/trunk/launchers/bundlelists/entityhub/sesame/pom.xml   (with props)
    stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/
    stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/
    stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/bundles/
    
stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/bundles/list.xml
Removed:
    stanbol/trunk/launchers/bundlelists/entityhub/pom.xml
    stanbol/trunk/launchers/bundlelists/entityhub/src/
Modified:
    stanbol/trunk/entityhub/pom.xml
    stanbol/trunk/launchers/bundlelists/pom.xml
    stanbol/trunk/launchers/full-war/pom.xml
    stanbol/trunk/launchers/full/pom.xml
    stanbol/trunk/launchers/stable/pom.xml

Modified: stanbol/trunk/entityhub/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/entityhub/pom.xml?rev=1551137&r1=1551136&r2=1551137&view=diff
==============================================================================
--- stanbol/trunk/entityhub/pom.xml (original)
+++ stanbol/trunk/entityhub/pom.xml Mon Dec 16 09:28:52 2013
@@ -64,12 +64,15 @@
     <module>model/sesame</module>
     <module>query/sparql</module>
     <module>query/clerezza</module>
+    <module>query/sesame</module>
     <module>site/linkeddata</module>
     <module>site/managed</module>
     <module>yard/clerezza</module>
     <module>yard/solr</module>
     <module>yard/sesame</module>
     <module>jersey</module>
+    <module>web/clerezza</module>
+    <module>web/sesame</module>
     <module>ldpath</module>
 
     <!-- Utils for creating local caches (indexing utils) -->

Propchange: stanbol/trunk/launchers/bundlelists/entityhub/clerezza/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Dec 16 09:28:52 2013
@@ -0,0 +1 @@
+target

Added: stanbol/trunk/launchers/bundlelists/entityhub/clerezza/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/entityhub/clerezza/pom.xml?rev=1551137&view=auto
==============================================================================
--- stanbol/trunk/launchers/bundlelists/entityhub/clerezza/pom.xml (added)
+++ stanbol/trunk/launchers/bundlelists/entityhub/clerezza/pom.xml Mon Dec 16 
09:28:52 2013
@@ -0,0 +1,38 @@
+<?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>apache-stanbol-bundlelists</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <relativePath>../..</relativePath>
+  </parent>
+
+  
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.clerezza</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>partialbundlelist</packaging>
+  
+  <name>Apache Stanbol Bundlelist for Clerezza based RDF support of the 
Entityhub</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>maven-launchpad-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Propchange: stanbol/trunk/launchers/bundlelists/entityhub/clerezza/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: 
stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/bundles/list.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/bundles/list.xml?rev=1551137&view=auto
==============================================================================
--- 
stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/bundles/list.xml
 (added)
+++ 
stanbol/trunk/launchers/bundlelists/entityhub/clerezza/src/main/bundles/list.xml
 Mon Dec 16 09:28:52 2013
@@ -0,0 +1,52 @@
+<?xml version="1.0" ?>
+<!--
+  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>
+  <!-- Stanbol Entityhub infrastructure and required libraries-->
+  <startLevel level="30">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.model.clerezza</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.query.clerezza</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.site.linkeddata</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.yard.clerezza</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+  
+  <!-- Web Fragment -->
+  <startLevel level="31">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.web.clerezza</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+  </startLevel>  
+</bundles>  
\ No newline at end of file

Propchange: stanbol/trunk/launchers/bundlelists/entityhub/core/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Dec 16 09:28:52 2013
@@ -0,0 +1 @@
+target

Added: stanbol/trunk/launchers/bundlelists/entityhub/core/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/entityhub/core/pom.xml?rev=1551137&view=auto
==============================================================================
--- stanbol/trunk/launchers/bundlelists/entityhub/core/pom.xml (added)
+++ stanbol/trunk/launchers/bundlelists/entityhub/core/pom.xml Mon Dec 16 
09:28:52 2013
@@ -0,0 +1,38 @@
+<?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>apache-stanbol-bundlelists</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <relativePath>../..</relativePath>
+  </parent>
+
+  
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.core</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>partialbundlelist</packaging>
+  
+  <name>Apache Stanbol Bundlelist for Entityhub</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>maven-launchpad-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Propchange: stanbol/trunk/launchers/bundlelists/entityhub/core/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: 
stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/bundles/list.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/bundles/list.xml?rev=1551137&view=auto
==============================================================================
--- 
stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/bundles/list.xml 
(added)
+++ 
stanbol/trunk/launchers/bundlelists/entityhub/core/src/main/bundles/list.xml 
Mon Dec 16 09:28:52 2013
@@ -0,0 +1,70 @@
+<?xml version="1.0" ?>
+<!--
+  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>
+  <!-- Stanbol Entityhub infrastructure and required libraries-->
+  <startLevel level="30">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.servicesapi</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.core</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.query.sparql</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.site.managed</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.yard.solr</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.ldpath</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>   
+  </startLevel>
+  
+  <!-- Web Fragment -->
+  <startLevel level="31">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.jersey</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+  </startLevel>  
+  <!-- Default configuration for the Entityhub -->
+  <startLevel level="32">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.defaults</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+  </startLevel>  
+</bundles>  
\ No newline at end of file

Propchange: stanbol/trunk/launchers/bundlelists/entityhub/sesame/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Dec 16 09:28:52 2013
@@ -0,0 +1 @@
+target

Added: stanbol/trunk/launchers/bundlelists/entityhub/sesame/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/entityhub/sesame/pom.xml?rev=1551137&view=auto
==============================================================================
--- stanbol/trunk/launchers/bundlelists/entityhub/sesame/pom.xml (added)
+++ stanbol/trunk/launchers/bundlelists/entityhub/sesame/pom.xml Mon Dec 16 
09:28:52 2013
@@ -0,0 +1,38 @@
+<?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>apache-stanbol-bundlelists</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <relativePath>../..</relativePath>
+  </parent>
+
+  
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.sesame</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>partialbundlelist</packaging>
+  
+  <name>Apache Stanbol Bundlelist for Sesame based RDF support of the 
Entityhub</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>maven-launchpad-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Propchange: stanbol/trunk/launchers/bundlelists/entityhub/sesame/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: 
stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/bundles/list.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/bundles/list.xml?rev=1551137&view=auto
==============================================================================
--- 
stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/bundles/list.xml 
(added)
+++ 
stanbol/trunk/launchers/bundlelists/entityhub/sesame/src/main/bundles/list.xml 
Mon Dec 16 09:28:52 2013
@@ -0,0 +1,47 @@
+<?xml version="1.0" ?>
+<!--
+  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>
+  <!-- Stanbol Entityhub infrastructure and required libraries-->
+  <startLevel level="30">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.model.sesame</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.query.sesame</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.yard.sesame</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+  </startLevel>
+  
+  <!-- Web Fragment -->
+  <startLevel level="31">
+    <bundle>
+      <groupId>org.apache.stanbol</groupId>
+      <artifactId>org.apache.stanbol.entityhub.web.sesame</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </bundle>
+  </startLevel>  
+</bundles>  
\ No newline at end of file

Modified: stanbol/trunk/launchers/bundlelists/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/bundlelists/pom.xml?rev=1551137&r1=1551136&r2=1551137&view=diff
==============================================================================
--- stanbol/trunk/launchers/bundlelists/pom.xml (original)
+++ stanbol/trunk/launchers/bundlelists/pom.xml Mon Dec 16 09:28:52 2013
@@ -68,7 +68,10 @@
 
     <!-- Components -->
     <module>enhancer</module>
-    <module>entityhub</module>
+    <!-- entityhub -->
+    <module>entityhub/core</module>
+    <module>entityhub/clerezza</module>
+    <module>entityhub/sesame</module>
  <!--   <module>cmsadapter</module>
     <module>contenthub</module> -->
     <module>ontologymanager</module>

Modified: stanbol/trunk/launchers/full-war/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/full-war/pom.xml?rev=1551137&r1=1551136&r2=1551137&view=diff
==============================================================================
--- stanbol/trunk/launchers/full-war/pom.xml (original)
+++ stanbol/trunk/launchers/full-war/pom.xml Mon Dec 16 09:28:52 2013
@@ -186,9 +186,24 @@
     <!-- Stanbol Entityhub Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>
-      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub</artifactId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.core</artifactId>
       <version>1.0.0-SNAPSHOT</version>
       <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.clerezza</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.sesame</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
     </dependency>
     
     <!-- Stanbol Ontology Manager Bundle List -->

Modified: stanbol/trunk/launchers/full/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/full/pom.xml?rev=1551137&r1=1551136&r2=1551137&view=diff
==============================================================================
--- stanbol/trunk/launchers/full/pom.xml (original)
+++ stanbol/trunk/launchers/full/pom.xml Mon Dec 16 09:28:52 2013
@@ -247,7 +247,21 @@
     <!-- Stanbol Entityhub Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>
-      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub</artifactId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.core</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.clerezza</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.sesame</artifactId>
       <version>1.0.0-SNAPSHOT</version>
       <type>partialbundlelist</type>
       <scope>provided</scope>

Modified: stanbol/trunk/launchers/stable/pom.xml
URL: 
http://svn.apache.org/viewvc/stanbol/trunk/launchers/stable/pom.xml?rev=1551137&r1=1551136&r2=1551137&view=diff
==============================================================================
--- stanbol/trunk/launchers/stable/pom.xml (original)
+++ stanbol/trunk/launchers/stable/pom.xml Mon Dec 16 09:28:52 2013
@@ -200,7 +200,14 @@
     <!-- Stanbol Entityhub Bundle List -->
     <dependency>
       <groupId>org.apache.stanbol</groupId>
-      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub</artifactId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.core</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+      <type>partialbundlelist</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.stanbol</groupId>
+      
<artifactId>org.apache.stanbol.launchers.bundlelists.entityhub.clerezza</artifactId>
       <version>1.0.0-SNAPSHOT</version>
       <type>partialbundlelist</type>
       <scope>provided</scope>


Reply via email to