You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@clerezza.apache.org by en...@apache.org on 2014/06/02 16:42:27 UTC

[1/4] git commit: CLEREZZA-923 Created module for TDB storage

Repository: clerezza
Updated Branches:
  refs/heads/master fc22bc1bb -> 485189151


CLEREZZA-923 Created module for TDB storage


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

Branch: refs/heads/master
Commit: f3b50c2f8aa728cd3ce43f1e8fc7e9a46090654a
Parents: fc22bc1
Author: enridaga <en...@apache.org>
Authored: Mon Jun 2 15:29:48 2014 +0100
Committer: enridaga <en...@apache.org>
Committed: Mon Jun 2 15:29:48 2014 +0100

----------------------------------------------------------------------
 provisioning/rdf.tdb/pom.xml | 207 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 207 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/clerezza/blob/f3b50c2f/provisioning/rdf.tdb/pom.xml
----------------------------------------------------------------------
diff --git a/provisioning/rdf.tdb/pom.xml b/provisioning/rdf.tdb/pom.xml
new file mode 100644
index 0000000..b1ac0d9
--- /dev/null
+++ b/provisioning/rdf.tdb/pom.xml
@@ -0,0 +1,207 @@
+<?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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <artifactId>clerezza</artifactId>
+        <groupId>org.apache.clerezza</groupId>
+        <version>0.5-SNAPSHOT</version>
+        <relativePath>../../parent</relativePath>
+    </parent>
+    
+    <groupId>org.apache.clerezza.provisioning</groupId>
+    <artifactId>rdf.tdb</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>Clerezza - Provisioning - Jena TDB Storage</name>
+    <description>A Karaf feature and partialbundlelist with the Jena TDB storage provider
+    
+        This feature depends on java and OSGi platform libraries (javax.xml,
+        org.osgi.service.cm and others) as well as rdf and slf4j logging.
+    </description>
+
+    <dependencies>
+<!--
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>
+            <artifactId>com.ibm.icu</artifactId>
+            <version>0.6-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.wymiwyg</groupId>
+            <artifactId>wymiwyg-commons-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpcore-osgi</artifactId>
+        </dependency>
+        <dependency>
+            <artifactId>guava</artifactId>
+            <groupId>com.google.guava</groupId>
+            <version>14.0</version>
+        </dependency>
+-->
+        <!-- providing packages like javax.xml.stream needed by tdb -->
+<!--
+        <dependency>
+            <groupId>org.apache.stanbol</groupId>
+            <artifactId>org.apache.stanbol.commons.frameworkfragment</artifactId>
+            <version>0.11.0</version>
+            <scope>provided</scope>
+        </dependency>
+-->
+        <!-- clerezza bundles -->
+<!--
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>utils</artifactId>
+            <version>0.2-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.core</artifactId>
+            <version>0.14-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.ontologies</artifactId>
+            <version>0.12-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.utils</artifactId>
+            <version>0.14-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.metadata</artifactId>
+            <version>0.2-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.commons</artifactId>
+            <version>0.7-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.facade</artifactId>
+            <version>0.14-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.rdfa</artifactId>
+            <version>0.2-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.rdfjson</artifactId>
+            <version>0.4-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>
+            <artifactId>org.json.simple</artifactId>
+            <version>0.4-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.serializer</artifactId>
+            <version>0.11-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.parser</artifactId>
+            <version>0.12-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.sparql</artifactId>
+            <version>0.7-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.storage</artifactId>
+            <version>0.7-SNAPSHOT</version>
+        </dependency>
+-->
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.jena.tdb.storage</artifactId>
+            <version>0.7-SNAPSHOT</version>
+        </dependency>
+<!--
+        <dependency>
+            <groupId>org.apache.clerezza</groupId>
+            <artifactId>rdf.file.storage</artifactId>
+            <version>0.4-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>            
+            <artifactId>org.apache.jena.jena-iri</artifactId>
+            <version>1.0.1_1-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>            
+            <artifactId>org.apache.jena.jena-core</artifactId>
+            <version>2.11.1_1-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>            
+            <artifactId>org.apache.jena.jena-arq</artifactId>
+            <version>2.11.1_1-SNAPSHOT</version>
+        </dependency>
+-->
+        <dependency>
+            <groupId>org.apache.clerezza.ext</groupId>            
+            <artifactId>org.apache.jena.jena-tdb</artifactId>
+            <version>1.0.1_1-SNAPSHOT</version>
+        </dependency>
+        <!-- <dependency>
+            <groupId>org.apache.servicemix.bundles</groupId>
+            <artifactId>org.apache.servicemix.bundles.xmlresolver</artifactId>
+            <version>1.2_5</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.servicemix.bundles</groupId>
+            <artifactId>org.apache.servicemix.bundles.xerces</artifactId>
+            <version>2.11.0_1</version>
+        </dependency> -->
+
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.wymiwyg.karaf.tooling</groupId>
+                <artifactId>karaf-sling-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+    
+</project>


[4/4] git commit: CLEREZZA-923 Updated launchers using provisioning/rdf to also use provisioning/rdf.tdb

Posted by en...@apache.org.
CLEREZZA-923 Updated launchers using provisioning/rdf to also use provisioning/rdf.tdb


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

Branch: refs/heads/master
Commit: 48518915145d1e2a27e60fa6761cc2d24b72340c
Parents: cfe335f
Author: enridaga <en...@apache.org>
Authored: Mon Jun 2 15:37:16 2014 +0100
Committer: enridaga <en...@apache.org>
Committed: Mon Jun 2 15:37:16 2014 +0100

----------------------------------------------------------------------
 provisioning/launchers/linked-data-launcher/pom.xml   | 8 ++++++++
 provisioning/launchers/typerendering-launcher/pom.xml | 7 +++++++
 2 files changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/clerezza/blob/48518915/provisioning/launchers/linked-data-launcher/pom.xml
----------------------------------------------------------------------
diff --git a/provisioning/launchers/linked-data-launcher/pom.xml b/provisioning/launchers/linked-data-launcher/pom.xml
index 26ddbf0..5d6f9b5 100644
--- a/provisioning/launchers/linked-data-launcher/pom.xml
+++ b/provisioning/launchers/linked-data-launcher/pom.xml
@@ -236,6 +236,14 @@
             <version>0.1-SNAPSHOT</version>
             <type>partialbundlelist</type>
         </dependency>
+		
+        <dependency>
+             <groupId>org.apache.clerezza.provisioning</groupId>
+             <artifactId>rdf.tdb</artifactId>
+             <version>0.1-SNAPSHOT</version>
+             <type>partialbundlelist</type>
+         </dependency>
+		 
         <dependency>
             <groupId>org.apache.clerezza.provisioning</groupId>
             <artifactId>platform.graphnodeprovider</artifactId>

http://git-wip-us.apache.org/repos/asf/clerezza/blob/48518915/provisioning/launchers/typerendering-launcher/pom.xml
----------------------------------------------------------------------
diff --git a/provisioning/launchers/typerendering-launcher/pom.xml b/provisioning/launchers/typerendering-launcher/pom.xml
index 509bc41..74ebd8e 100644
--- a/provisioning/launchers/typerendering-launcher/pom.xml
+++ b/provisioning/launchers/typerendering-launcher/pom.xml
@@ -235,6 +235,13 @@
             <version>0.1-SNAPSHOT</version>
             <type>partialbundlelist</type>
         </dependency>
+		
+        <dependency>
+             <groupId>org.apache.clerezza.provisioning</groupId>
+             <artifactId>rdf.tdb</artifactId>
+             <version>0.1-SNAPSHOT</version>
+             <type>partialbundlelist</type>
+         </dependency>
         <dependency>
             <groupId>org.apache.clerezza.provisioning</groupId>
             <artifactId>platform.graphnodeprovider</artifactId>


[2/4] git commit: CLEREZZA-923 Commented TDB artifacts from provisioning/rdf

Posted by en...@apache.org.
CLEREZZA-923 Commented TDB artifacts from provisioning/rdf


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

Branch: refs/heads/master
Commit: fac89cdcdd3cd5c61256aebeace4d295daad792a
Parents: f3b50c2
Author: enridaga <en...@apache.org>
Authored: Mon Jun 2 15:30:34 2014 +0100
Committer: enridaga <en...@apache.org>
Committed: Mon Jun 2 15:30:34 2014 +0100

----------------------------------------------------------------------
 provisioning/rdf/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/clerezza/blob/fac89cdc/provisioning/rdf/pom.xml
----------------------------------------------------------------------
diff --git a/provisioning/rdf/pom.xml b/provisioning/rdf/pom.xml
index 2b43f31..dd943ff 100644
--- a/provisioning/rdf/pom.xml
+++ b/provisioning/rdf/pom.xml
@@ -146,11 +146,11 @@
             <artifactId>rdf.jena.storage</artifactId>
             <version>0.7-SNAPSHOT</version>
         </dependency>
-        <dependency>
+        <!-- <dependency>
             <groupId>org.apache.clerezza</groupId>
             <artifactId>rdf.jena.tdb.storage</artifactId>
             <version>0.7-SNAPSHOT</version>
-        </dependency>
+        </dependency> -->
         <dependency>
             <groupId>org.apache.clerezza</groupId>
             <artifactId>rdf.file.storage</artifactId>
@@ -171,11 +171,11 @@
             <artifactId>org.apache.jena.jena-arq</artifactId>
             <version>2.11.1_1-SNAPSHOT</version>
         </dependency>
-        <dependency>
+        <!-- <dependency>
             <groupId>org.apache.clerezza.ext</groupId>            
             <artifactId>org.apache.jena.jena-tdb</artifactId>
             <version>1.0.1_1-SNAPSHOT</version>
-        </dependency>
+        </dependency> -->
         <dependency>
             <groupId>org.apache.servicemix.bundles</groupId>
             <artifactId>org.apache.servicemix.bundles.xmlresolver</artifactId>


[3/4] git commit: CLEREZZA-923 Updated provisioning pom and full launcher

Posted by en...@apache.org.
CLEREZZA-923 Updated provisioning pom and full launcher


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

Branch: refs/heads/master
Commit: cfe335f03687887e3756a38dee850154229782fb
Parents: fac89cd
Author: enridaga <en...@apache.org>
Authored: Mon Jun 2 15:34:19 2014 +0100
Committer: enridaga <en...@apache.org>
Committed: Mon Jun 2 15:34:19 2014 +0100

----------------------------------------------------------------------
 provisioning/launchers/full-launcher/pom.xml | 7 +++++++
 provisioning/pom.xml                         | 1 +
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/clerezza/blob/cfe335f0/provisioning/launchers/full-launcher/pom.xml
----------------------------------------------------------------------
diff --git a/provisioning/launchers/full-launcher/pom.xml b/provisioning/launchers/full-launcher/pom.xml
index 23a0f1d..22b9b1d 100644
--- a/provisioning/launchers/full-launcher/pom.xml
+++ b/provisioning/launchers/full-launcher/pom.xml
@@ -242,6 +242,13 @@
             <version>0.1-SNAPSHOT</version>
             <type>partialbundlelist</type>
         </dependency>
+		
+       <dependency>
+            <groupId>org.apache.clerezza.provisioning</groupId>
+            <artifactId>rdf.tdb</artifactId>
+            <version>0.1-SNAPSHOT</version>
+            <type>partialbundlelist</type>
+        </dependency>
 
        <dependency>
             <groupId>org.apache.clerezza.provisioning</groupId>

http://git-wip-us.apache.org/repos/asf/clerezza/blob/cfe335f0/provisioning/pom.xml
----------------------------------------------------------------------
diff --git a/provisioning/pom.xml b/provisioning/pom.xml
index 31587b2..0994069 100644
--- a/provisioning/pom.xml
+++ b/provisioning/pom.xml
@@ -47,6 +47,7 @@
         <module>felixweb</module>
         <module>jaxrs-whiteboard</module>
         <module>rdf</module>
+        <module>rdf.tdb</module>
         <module>rdf.virtuoso</module>
         <module>platform.graphnodeprovider</module>
         <module>typehandlerspace</module>