Return-Path: X-Original-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Delivered-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6B74617A05 for ; Wed, 25 Mar 2015 12:56:26 +0000 (UTC) Received: (qmail 52976 invoked by uid 500); 25 Mar 2015 12:56:26 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 52950 invoked by uid 500); 25 Mar 2015 12:56:26 -0000 Mailing-List: contact commits-help@commonsrdf.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commonsrdf.incubator.apache.org Delivered-To: mailing list commits@commonsrdf.incubator.apache.org Received: (qmail 52941 invoked by uid 99); 25 Mar 2015 12:56:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Mar 2015 12:56:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 25 Mar 2015 12:56:23 +0000 Received: (qmail 50965 invoked by uid 99); 25 Mar 2015 12:56:03 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Mar 2015 12:56:03 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 609C5AC01AB for ; Wed, 25 Mar 2015 12:56:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1669112 - in /incubator/commonsrdf/site: branches/ tags/ trunk/ trunk/content/ trunk/content/markdown/ trunk/content/resources/ trunk/content/resources/images/ Date: Wed, 25 Mar 2015 12:56:03 -0000 To: commits@commonsrdf.incubator.apache.org From: wikier@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150325125603.609C5AC01AB@hades.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wikier Date: Wed Mar 25 12:56:02 2015 New Revision: 1669112 URL: http://svn.apache.org/r1669112 Log: INFRA-9260: initial version for the commons rdf site, trying to keep it aligned with the apache commons site Added: incubator/commonsrdf/site/branches/ incubator/commonsrdf/site/tags/ incubator/commonsrdf/site/trunk/ (with props) incubator/commonsrdf/site/trunk/content/ incubator/commonsrdf/site/trunk/content/markdown/ incubator/commonsrdf/site/trunk/content/markdown/download.md incubator/commonsrdf/site/trunk/content/markdown/index.md incubator/commonsrdf/site/trunk/content/resources/ incubator/commonsrdf/site/trunk/content/resources/images/ incubator/commonsrdf/site/trunk/content/resources/images/commons-rdf-class-diagram.png (with props) incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.png (with props) incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.xcf (with props) incubator/commonsrdf/site/trunk/content/site.xml incubator/commonsrdf/site/trunk/pom.xml Propchange: incubator/commonsrdf/site/trunk/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Wed Mar 25 12:56:02 2015 @@ -0,0 +1,2 @@ +target +*~ Added: incubator/commonsrdf/site/trunk/content/markdown/download.md URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/content/markdown/download.md?rev=1669112&view=auto ============================================================================== --- incubator/commonsrdf/site/trunk/content/markdown/download.md (added) +++ incubator/commonsrdf/site/trunk/content/markdown/download.md Wed Mar 25 12:56:02 2015 @@ -0,0 +1,4 @@ +# Download Commons RDF + +Nothing to see here for now... + Added: incubator/commonsrdf/site/trunk/content/markdown/index.md URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/content/markdown/index.md?rev=1669112&view=auto ============================================================================== --- incubator/commonsrdf/site/trunk/content/markdown/index.md (added) +++ incubator/commonsrdf/site/trunk/content/markdown/index.md Wed Mar 25 12:56:02 2015 @@ -0,0 +1,48 @@ +# Apache Commons RDF (incubating) + + + +Commons RDF aims to provide a common library for [RDF 1.1](http://www.w3.org/TR/rdf11-concepts/) +that could be implemented by the upcoming versions of the main Java toolkits +([Jena](http://jena.apache.org/) 3.x and [Sesame](http://openrdf.callimachus.net/) +4.x) as well as for other libraries ([OWLAPI](http://owlapi.sourceforge.net/), +[Clerezza](http://clerezza.apache.org/)) and other JVM languages. + +The main motivation behind this simple library is revise an historical incompatibility +issue. This library does not pretend to be a generic api wrapping those libraries, +but a set of interfaces for the RDF 1.1 concepts that can be used to expose common +RDF-1.1 concepts using common Java interfaces. In the initial phase commons-rdf +is focused on a subset of the core concepts defined by RDF-1.1 (URI/IRI, Blank Node, +Literal, Triple, and Graph). In particular, commons RDF aims to provide a type-safe, +non-general API that covers RDF 1.1. In a future phase we may define interfaces +for Datasets and Quads. + +A draft diagram of the interfaces which may be included in Commons RDF are: + +![Classes diagram](images/commons-rdf-class-diagram.png) + +This library is still work in progress. Therefore everybody is +welcomed to join the project and contribute! + +## Disclaimer + +Apache Taverna is an effort undergoing incubation at [The Apache Software Foundation +(ASF)](http://apache.org/) sponsored by the [Apache Incubator PMC](http://incubator.apache.org/). +Incubation is required of all newly accepted projects until a further review +indicates that the infrastructure, communications, and decision making process +have stabilized in a manner consistent with other successful ASF projects. +While incubation status is not necessarily a reflection of the completeness or +stability of the code, it does indicate that the project has yet to be fully +endorsed by the ASF. + Added: incubator/commonsrdf/site/trunk/content/resources/images/commons-rdf-class-diagram.png URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/content/resources/images/commons-rdf-class-diagram.png?rev=1669112&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/commonsrdf/site/trunk/content/resources/images/commons-rdf-class-diagram.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.png URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.png?rev=1669112&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.xcf URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.xcf?rev=1669112&view=auto ============================================================================== Binary file - no diff available. Propchange: incubator/commonsrdf/site/trunk/content/resources/images/commonsrdf-logo.xcf ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: incubator/commonsrdf/site/trunk/content/site.xml URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/content/site.xml?rev=1669112&view=auto ============================================================================== --- incubator/commonsrdf/site/trunk/content/site.xml (added) +++ incubator/commonsrdf/site/trunk/content/site.xml Wed Mar 25 12:56:02 2015 @@ -0,0 +1,78 @@ + + + + + + Apache Commons RDF + /images/commonsrdf-logo.png + Apache Commons RDF logo + http://commonsrdf.incubator.apache.org/ + + + + + + + org.apache.commons + commons-skin + 4 + + + + + Apache Commons RDF + Apache, Commons, RDF + +
+
+ Apache Commons, Apache, the Apache feather logo, and the Apache Commons project logos are trademarks of The Apache Software Foundation. + All other marks mentioned may be trademarks or registered trademarks of their respective owners.
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Added: incubator/commonsrdf/site/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/commonsrdf/site/trunk/pom.xml?rev=1669112&view=auto ============================================================================== --- incubator/commonsrdf/site/trunk/pom.xml (added) +++ incubator/commonsrdf/site/trunk/pom.xml Wed Mar 25 12:56:02 2015 @@ -0,0 +1,259 @@ + + + + 4.0.0 + + org.apache.commonsrdf + commonsrdf-site + pom + 0.0.2-SNAPSHOT + Apache Commons RDF (Incubating) + http://commonsrdf.incubator.apache.org/ + + + + + lewismc + Lewis John McGibbney + lewismc[at]apache[dot]org + + Committer + PMC Member + Champion + + +1 + + + rvesse + Rob Vesse + rvesse[at]apache[dot]org + + Committer + PMC Member + Mentor + + +0 + + + johndament + John D Ament + johndament[at]apache[dot]org + + Committer + PMC Member + Mentor + + +1 + + + ggregory + Gary Gregory + ggregory[at]apache[dot]org + + Committer + PMC Member + Champion + + +1 + + + wikier + Sergio Fernández + wikier[at]apache[dot]org + http://www.wikier.org + + Committer + PMC Member + + +1 + + + andy + Andy Seaborne + andy[at]apache[dot]org + + Committer + PMC Member + + +0 + + + ansell + Peter Ansell + ansell[at]apache[dot]org + http://github.com/ansell + + Committer + PMC Member + + +10 + + + stain + Stian Soiland-Reyes + stain[at]apache[dot]org + + Committer + PMC Member + + +0 + + + reto + Reto Gmür + reto[at]apache[dot]org + + Committer + PMC Member + + +1 + + + enridaga + Enrico Daga + enridaga[at]apache[dot]org + + Committer + PMC Member + + +0 + + + britter + Benedikt Ritter + britter[at]apache[dot]org + + Committer + PMC Member + Apache Commons Representative + + +1 + + + + + https://git-wip-us.apache.org/repos/asf/incubator-commonsrdf.git + scm:git:https://git-wip-us.apache.org/repos/asf/incubator-commonsrdf.git + scm:git:https://git-wip-us.apache.org/repos/asf/incubator-commonsrdf.git + + + + Jira + https://issues.apache.org/jira/browse/COMMONSRDF + + + + + dev + dev@commonsrdf.incubator.apache.org + dev-subscribe@commonsrdf.incubator.apache.org + dev-unsubscribe@commonsrdf.incubator.apache.org + http://mail-archives.apache.org/mod_mbox/commonsrdf-dev/ + + http://markmail.org/search/?q=list%3Aorg.apache.commonsrdf.dev + + + + commits + commits@commonsrdf.incubator.apache.org + commits-subscribe@commonsrdf.incubator.apache.org + commits-unsubscribe@commonsrdf.incubator.apache.org + http://mail-archives.apache.org/mod_mbox/commonsrdf-commits/ + + http://markmail.org/search/?q=list%3Aorg.apache.commonsrdf.commits + + + + + + + + content + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.7 + 1.7 + + + + org.apache.maven.plugins + maven-site-plugin + 3.4 + + + org.apache.maven.doxia + doxia-module-markdown + 1.6 + + + + ${basedir}/content + ${project.build.directory}/site + UTF-8 + UTF-8 + false + + + + maven-clean-plugin + 2.5 + + + + ${basedir} + + **/*~ + + false + + + + + + + + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + 2.7 + + false + + + + + + + + org.apache.commons + commons-skin + 4 + + + +