You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ss...@apache.org on 2013/02/26 18:07:47 UTC

svn commit: r1450281 - in /incubator/marmotta/site/trunk: content/markdown/ldclient/usage.md.vm content/markdown/ldpath/introduction.md.vm content/resources/css/fluido-doc.css content/resources/images/Marmotta_Logo_64.png content/site.xml pom.xml

Author: sschaffert
Date: Tue Feb 26 17:07:46 2013
New Revision: 1450281

URL: http://svn.apache.org/r1450281
Log:
added JavaDoc, added different (smaller) logo, now depends on artifacts being deployed

Added:
    incubator/marmotta/site/trunk/content/resources/css/fluido-doc.css
    incubator/marmotta/site/trunk/content/resources/images/Marmotta_Logo_64.png   (with props)
Modified:
    incubator/marmotta/site/trunk/content/markdown/ldclient/usage.md.vm
    incubator/marmotta/site/trunk/content/markdown/ldpath/introduction.md.vm
    incubator/marmotta/site/trunk/content/site.xml
    incubator/marmotta/site/trunk/pom.xml

Modified: incubator/marmotta/site/trunk/content/markdown/ldclient/usage.md.vm
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/markdown/ldclient/usage.md.vm?rev=1450281&r1=1450280&r2=1450281&view=diff
==============================================================================
--- incubator/marmotta/site/trunk/content/markdown/ldclient/usage.md.vm (original)
+++ incubator/marmotta/site/trunk/content/markdown/ldclient/usage.md.vm Tue Feb 26 17:07:46 2013
@@ -7,26 +7,26 @@ Maven Artifacts
 
 To use the Linked Data Client in your own projects, please add the following Maven dependencies to your project build:
 
-         <dependency>
-             <groupId>org.apache.marmotta</groupId>
-             <artifactId>ldclient-api</artifactId>
-             <version>${projectVersion}</version>
-         </dependency>
-         <dependency>
-             <groupId>org.apache.marmotta</groupId>
-             <artifactId>ldclient-core</artifactId>
-             <version>${projectVersion}</version>
-         </dependency>
+    <dependency>
+        <groupId>org.apache.marmotta</groupId>
+        <artifactId>ldclient-api</artifactId>
+        <version>${projectVersion}</version>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.marmotta</groupId>
+        <artifactId>ldclient-core</artifactId>
+        <version>${projectVersion}</version>
+    </dependency>
 
 This will add the basic Linked Data Client support to your project. In addition, you will need at least one data
 provider backend. Typically, you would at least add the RDF backend for accessing resources conforming to the
 Linked Data principles:
 
-         <dependency>
-             <groupId>org.apache.marmotta</groupId>
-             <artifactId>ldclient-provider-rdf</artifactId>
-             <version>${projectVersion}</version>
-         </dependency>
+    <dependency>
+        <groupId>org.apache.marmotta</groupId>
+        <artifactId>ldclient-provider-rdf</artifactId>
+        <version>${projectVersion}</version>
+    </dependency>
 
 Backends are automatically used by the Linked Data Client as soon as they are found on the classpath. We provide many
 more backends for different legacy systems. Please see the list in the [Introduction](introduction.html) and the
@@ -37,8 +37,57 @@ to be configured explicitly using so-cal
 Code Usage
 ----------
 
+Basic usage of the Linked Data Client library is very straightforward. You can create a new Linked Data Client with
+default configuration by simply adding the following statement:
 
+    LDClient ldclient = new LDClient();
+
+Optionally, you can also pass a client configuration that allows you to customize the way LDClient will handle requests,
+e.g. socket and connection timeouts, number of parallel requests, default endpoint configurations, etc. The client
+configuration can also be updated later using the `getClientConfiguration()` method.
+
+A resource is requested using the following statement:
+
+    ClientResponse result = ldclient.retrieveResource("http://...");
+
+The result is a client response object giving you access to the retrieved triples as well as some metadata about the
+request (e.g. expiry time as communicated by the server). In case the retrieval fails (timeout or parse errors), the
+method call will throw a DataRetrievalException that should be handled by the caller. You can access the retrieved
+triples as follows:
+
+    RepositoryConnection con = result.getTriples().getConnection();
+    con.begin();
+
+    // access the connection, e.g. using SPARQL
+    ...
+
+    con.commit();
+    con.close();
+
+
+The LDClient instance manages an internal connection pool and connection monitor. To avoid resource leakage, you should:
+
+* reuse the same LDClient instance for all Linked Data requests that have the same configuration
+* properly shutdown each LDClient instance with `ldclient.shutdown()`
 
 Providers and Endpoints
 -----------------------
 
+To allow access to different kinds of data sources and therefore wrap different formats into RDF, the LDClient library
+has two important concepts: providers and endpoints:
+
+* a **provider** implements the functionality of retrieving the data from a data source of a given type, e.g. MediaWiki
+  systems; a provider typically carries out a mapping from a legacy data format to RDF triples, and in many cases even
+  rewrites the resource URL to the actual URL that is used to retrieve the data (e.g. mapping the wiki article to the
+  MediaWiki API endpoint), as well as implements the actual access protocol (e.g. HTTP or LDAP); for the most common
+  case of HTTP resources, the ldclient-core package offers an abstract superclass already implementing HTTP access
+* a **endpoint** defines how to access a concrete class of resources; for example, it could define that all URLs that
+  match a Wikipedia page should use the MediaWiki provider with a certain configuration; through endpoint definitions
+  it is also possible to exclude retrieval of certain URL patterns by using the "NONE" provider and thus create
+  blacklists
+
+In some cases, a provider will only have a single endpoint definition, e.g. when accessing popular webservices like
+YouTube. Similarly, in some cases there will be reasonable default endpoint configurations (e.g. mapping Wikipedia to
+MediaWiki API). In both cases, such endpoints will be registered automatically when the library is found on the
+classpath using the Java service registry. In all other cases, it is necessary to explicitly register endpoint
+configurations with the LDClient instance. See the [API Javadoc](../apidocs/index.html) for more details.
\ No newline at end of file

Modified: incubator/marmotta/site/trunk/content/markdown/ldpath/introduction.md.vm
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/markdown/ldpath/introduction.md.vm?rev=1450281&r1=1450280&r2=1450281&view=diff
==============================================================================
--- incubator/marmotta/site/trunk/content/markdown/ldpath/introduction.md.vm (original)
+++ incubator/marmotta/site/trunk/content/markdown/ldpath/introduction.md.vm Tue Feb 26 17:07:46 2013
@@ -1,4 +1,4 @@
-# LDPath Query Language #
+# LDPath Query Language
 
 LDPath is a simple path-based query language, similar to XPath or SPARQL Property
 Paths, that is particularly well-suited for querying and retrieving resources

Added: incubator/marmotta/site/trunk/content/resources/css/fluido-doc.css
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/resources/css/fluido-doc.css?rev=1450281&view=auto
==============================================================================
--- incubator/marmotta/site/trunk/content/resources/css/fluido-doc.css (added)
+++ incubator/marmotta/site/trunk/content/resources/css/fluido-doc.css Tue Feb 26 17:07:46 2013
@@ -0,0 +1,420 @@
+/*
+ * 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.
+ */
+
+body {
+  margin: 0;
+  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+  font-size: 13px;
+  line-height: 18px;
+  color: #333333;
+  background-color: #ffffff;
+  padding-left: 10px;
+  padding-right: 10px;
+}
+a {
+  color: #0088cc;
+  text-decoration: none;
+}
+a:hover {
+  color: #005580;
+  text-decoration: underline;
+}
+p {
+  margin: 0 0 9px;
+  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+  font-size: 13px;
+  line-height: 18px;
+}
+p small {
+  font-size: 11px;
+  color: #999999;
+}
+.lead {
+  margin-bottom: 18px;
+  font-size: 20px;
+  font-weight: 200;
+  line-height: 27px;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+  margin: 0;
+  font-weight: bold;
+  color: #333333;
+  text-rendering: optimizelegibility;
+}
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small {
+  font-weight: normal;
+  color: #999999;
+}
+h1 {
+  font-size: 30px;
+  line-height: 36px;
+}
+h1 small {
+  font-size: 18px;
+}
+h2 {
+  font-size: 24px;
+  line-height: 36px;
+}
+h2 small {
+  font-size: 18px;
+}
+h3 {
+  line-height: 27px;
+  font-size: 18px;
+}
+h3 small {
+  font-size: 14px;
+}
+h4, h5, h6 {
+  line-height: 18px;
+}
+h4, FrameHeadingFont {
+  font-size: 14px;
+}
+h4 small {
+  font-size: 12px;
+}
+h5 {
+  font-size: 12px;
+}
+h6 {
+  font-size: 11px;
+  color: #999999;
+  text-transform: uppercase;
+}
+.page-header {
+  padding-bottom: 17px;
+  margin: 18px 0;
+  border-bottom: 1px solid #eeeeee;
+}
+.page-header h1 {
+  line-height: 1;
+}
+ul, ol {
+  padding: 0;
+  margin: 0 0 9px 25px;
+}
+ul ul,
+ul ol,
+ol ol,
+ol ul {
+  margin-bottom: 0;
+}
+ul {
+  list-style: disc;
+}
+ol {
+  list-style: decimal;
+}
+li {
+  line-height: 18px;
+}
+ul.unstyled, ol.unstyled {
+  margin-left: 0;
+  list-style: none;
+}
+dl {
+  margin-bottom: 18px;
+}
+dt, dd {
+  line-height: 18px;
+}
+dt {
+  font-weight: bold;
+}
+dd {
+  margin-left: 9px;
+}
+hr {
+  margin: 18px 0;
+  border: 0;
+  border-top: 1px solid #eeeeee;
+  border-bottom: 1px solid #ffffff;
+}
+strong {
+  font-weight: bold;
+}
+em {
+  font-style: italic;
+}
+.muted {
+  color: #999999;
+}
+abbr {
+  font-size: 90%;
+  text-transform: uppercase;
+  border-bottom: 1px dotted #ddd;
+  cursor: help;
+}
+blockquote {
+  padding: 0 0 0 15px;
+  margin: 0 0 18px;
+  border-left: 5px solid #eeeeee;
+}
+blockquote p {
+  margin-bottom: 0;
+  font-size: 16px;
+  font-weight: 300;
+  line-height: 22.5px;
+}
+blockquote small {
+  display: block;
+  line-height: 18px;
+  color: #999999;
+}
+blockquote small:before {
+  content: '\2014 \00A0';
+}
+blockquote.pull-right {
+  float: right;
+  padding-left: 0;
+  padding-right: 15px;
+  border-left: 0;
+  border-right: 5px solid #eeeeee;
+}
+blockquote.pull-right p, blockquote.pull-right small {
+  text-align: right;
+}
+q:before,
+q:after,
+blockquote:before,
+blockquote:after {
+  content: "";
+}
+address {
+  display: block;
+  margin-bottom: 18px;
+  line-height: 18px;
+  font-style: normal;
+}
+small {
+  font-size: 100%;
+}
+cite {
+  font-style: normal;
+}
+code, pre {
+  padding: 0 3px 2px;
+  font-family: Menlo, Monaco, "Courier New", monospace;
+  font-size: 12px;
+  color: #333333;
+  -webkit-border-radius: 3px;
+  -moz-border-radius: 3px;
+  border-radius: 3px;
+}
+pre {
+  display: block;
+  padding: 8.5px;
+  margin: 0 0 9px;
+  font-size: 12px;
+  line-height: 18px;
+  background-color: #f5f5f5;
+  border: 1px solid #ccc;
+  border: 1px solid rgba(0, 0, 0, 0.15);
+  -webkit-border-radius: 4px;
+  -moz-border-radius: 4px;
+  border-radius: 4px;
+  white-space: pre;
+  white-space: pre-wrap;
+  word-break: break-all;
+  word-wrap: break-word;
+}
+pre.prettyprint {
+  margin-bottom: 18px;
+}
+pre code {
+  padding: 0;
+  color: inherit;
+  background-color: transparent;
+  border: 0;
+}
+.pre-scrollable {
+  max-height: 340px;
+  overflow-y: scroll;
+}
+
+/* lables */
+.label {
+  padding: 2px 4px 3px;
+  font-size: 11.049999999999999px;
+  font-weight: bold;
+  color: #ffffff;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+  background-color: #999999;
+  -webkit-border-radius: 3px;
+  -moz-border-radius: 3px;
+  border-radius: 3px;
+}
+.label:hover {
+  color: #ffffff;
+  text-decoration: none;
+}
+.label-important {
+  background-color: #b94a48;
+}
+.label-important:hover {
+  background-color: #953b39;
+}
+.label-warning {
+  background-color: #f89406;
+}
+.label-warning:hover {
+  background-color: #c67605;
+}
+.label-success {
+  background-color: #468847;
+}
+.label-success:hover {
+  background-color: #356635;
+}
+.label-info {
+  background-color: #3a87ad;
+}
+.label-info:hover {
+  background-color: #2d6987;
+}
+
+/* alerts */
+.alert {
+  padding: 8px 35px 8px 14px;
+  margin-bottom: 18px;
+  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+  background-color: #fcf8e3;
+  border: 1px solid #fbeed5;
+  -webkit-border-radius: 4px;
+  -moz-border-radius: 4px;
+  border-radius: 4px;
+}
+.alert, .alert-heading {
+  color: #c09853;
+}
+.alert .close {
+  position: relative;
+  top: -2px;
+  right: -21px;
+  line-height: 18px;
+}
+.alert-success {
+  background-color: #dff0d8;
+  border-color: #d6e9c6;
+}
+.alert-success, .alert-success .alert-heading {
+  color: #468847;
+}
+.alert-danger, .alert-error {
+  background-color: #f2dede;
+  border-color: #eed3d7;
+}
+.alert-danger,
+.alert-error,
+.alert-danger .alert-heading,
+.alert-error .alert-heading {
+  color: #b94a48;
+}
+.alert-info {
+  background-color: #d9edf7;
+  border-color: #bce8f1;
+}
+.alert-info, .alert-info .alert-heading {
+  color: #3a87ad;
+}
+.alert-block {
+  padding-top: 14px;
+  padding-bottom: 14px;
+}
+.alert-block > p, .alert-block > ul {
+  margin-bottom: 0;
+}
+.alert-block p + p {
+  margin-top: 5px;
+}
+
+/* table */
+table {
+  max-width: 100%;
+  border-collapse: collapse;
+  border-spacing: 0;
+}
+table th, table td {
+  padding: 8px;
+  line-height: 18px;
+  text-align: left;
+  vertical-align: top;
+}
+table th {
+  font-weight: bold;
+}
+table thead th {
+  vertical-align: bottom;
+}
+table thead:first-child tr th, table thead:first-child tr td {
+  border-top: 0;
+}
+table tbody + tbody {
+  border-top: 2px solid #ddd;
+}
+
+/* hacks on default javadoc */
+
+/* Table colors */
+.TableHeadingColor     { background: #036; color:#FFFFFF; } /* Dark blue */
+.TableSubHeadingColor  { } /* Dark grey */
+.TableRowColor         { background: #FFFFFF; } /* White */
+
+/* Font used in left-hand frame lists */
+.FrameTitleFont   { color:#000000 }
+.FrameHeadingFont { color:#000000 }
+.FrameItemFont    { color:#000000 }
+
+/* Example of smaller, sans-serif font in frames */
+/* .FrameItemFont  { font-size: 10pt; font-family: Helvetica, Arial, sans-serif } */
+
+
+/* Navigation bar fonts and colors */
+.NavBarCell1    { background-color:#FFFFFF; }/* Light mauve */
+.NavBarCell1Rev {  }/* Dark Blue */
+.NavBarFont1    { color:#000000; }
+.NavBarFont1Rev { color:#999999; }
+
+.NavBarCell2    { background-color:#FFFFFF; }
+.NavBarCell3    { background-color:#FFFFFF; }
+
+
+/* Marmotta custom styles */
+
+a, a:active, a:visited {
+    color: #CB1180;
+}
+a:hover {
+    color: #ffffff;
+    background-color: #CB1180;
+    text-decoration: none;
+}
+

Added: incubator/marmotta/site/trunk/content/resources/images/Marmotta_Logo_64.png
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/resources/images/Marmotta_Logo_64.png?rev=1450281&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/marmotta/site/trunk/content/resources/images/Marmotta_Logo_64.png
------------------------------------------------------------------------------
    svn:executable = *

Propchange: incubator/marmotta/site/trunk/content/resources/images/Marmotta_Logo_64.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/marmotta/site/trunk/content/site.xml
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/content/site.xml?rev=1450281&r1=1450280&r2=1450281&view=diff
==============================================================================
--- incubator/marmotta/site/trunk/content/site.xml (original)
+++ incubator/marmotta/site/trunk/content/site.xml Tue Feb 26 17:07:46 2013
@@ -46,7 +46,7 @@
 
     <bannerRight>
         <name>Apache Marmotta (incubating)</name>
-        <src>/images/marmotta.png</src>
+        <src>/images/Marmotta_Logo_64.png</src>
     </bannerRight>  
 
     <body>
@@ -78,7 +78,7 @@
         <menu name="LDClient">
             <item name="Introduction" href="ldclient/introduction.html"/>
             <item name="Usage" href="ldclient/usage.html"/>
-            <item name="Modules" href="ldclient/usage.html"/>
+            <item name="Modules" href="ldclient/modules.html"/>
             <item name="Data Providers" href="ldclient/dataproviders.html"/>
         </menu>
         <menu name="LDCache">

Modified: incubator/marmotta/site/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/marmotta/site/trunk/pom.xml?rev=1450281&r1=1450280&r2=1450281&view=diff
==============================================================================
--- incubator/marmotta/site/trunk/pom.xml (original)
+++ incubator/marmotta/site/trunk/pom.xml Tue Feb 26 17:07:46 2013
@@ -88,7 +88,7 @@
                         <outputDirectory>${site.output}</outputDirectory>
                         <inputEncoding>${site.encoding}</inputEncoding>
                         <outputEncoding>${site.encoding}</outputEncoding>
-                        <showAvatarImages>false</showAvatarImages>
+                        <!--<showAvatarImages>false</showAvatarImages>-->
                     </configuration>
                 </plugin>
                 <plugin>
@@ -106,13 +106,95 @@
                         </filesets>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <version>2.9</version>
+                    <configuration>
+                        <stylesheet>maven</stylesheet>
+                    </configuration>
+
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>
 
     <reporting>
         <plugins>
-                 
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.9</version>
+
+                <configuration>
+                    <includeDependencySources>true</includeDependencySources>
+                </configuration>
+
+                <reportSets>
+                    <!-- Create Java API Documentation -->
+                    <reportSet>
+                        <id>java-api</id>
+                        <configuration>
+                            <name>Java API</name>
+                            <description>Aggregated Java API documentation</description>
+                            <destDir>apidocs</destDir>
+                            <encoding>UTF-8</encoding>
+                            <detectLinks>true</detectLinks>
+                            <stylesheetfile>content/resources/css/fluido-doc.css</stylesheetfile>
+                            <groups>
+                                <group>
+                                    <title>LDClient</title>
+                                    <packages>org.apache.marmotta.ldclient.*</packages>
+                                </group>
+                                <group>
+                                    <title>LDCache</title>
+                                    <packages>org.apache.marmotta.ldcache.*</packages>
+                                </group>
+                                <group>
+                                    <title>LDPath</title>
+                                    <packages>org.apache.marmotta.ldpath.*</packages>
+                                </group>
+                                <group>
+                                    <title>KiWi Triple Store</title>
+                                    <packages>org.apache.marmotta.kiwi.*</packages>
+                                </group>
+                            </groups>
+                            <dependencySourceIncludes>
+                                <dependencySourceInclude>org.apache.marmotta:*</dependencySourceInclude>
+                            </dependencySourceIncludes>
+                            <header><![CDATA[<img src="{@docRoot}/../images/Marmotta_Logo_64.png"/>]]></header>
+                         </configuration>
+                        <reports>
+                            <report>javadoc</report>
+                        </reports>
+                    </reportSet>
+<!--
+                    <reportSet>
+                        <id>ldclient-api</id>
+                        <configuration>
+                            <name>Java API: LDClient</name>
+                            <description>Java API documentation for Linked Data Client</description>
+                            <destDir>apidocs/ldclient</destDir>
+                            <encoding>UTF-8</encoding>
+                            <detectLinks>true</detectLinks>
+                            <subpackages>org.apache.marmotta.ldclient</subpackages>
+                            <groups>
+                                <group>
+                                    <title>LDClient</title>
+                                    <packages>org.apache.marmotta.ldclient.*</packages>
+                                </group>
+                            </groups>
+                            <dependencySourceIncludes>
+                                <dependencySourceInclude>org.apache.marmotta:ldclient-*</dependencySourceInclude>
+                            </dependencySourceIncludes>
+                        </configuration>
+                        <reports>
+                            <report>javadoc</report>
+                        </reports>
+                    </reportSet>
+-->
+                </reportSets>
+            </plugin>
         </plugins>
     </reporting>
 
@@ -276,6 +358,60 @@
             <version>3.0.0-incubating-SNAPSHOT</version>
             <type>pom</type>
         </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>kiwi-triplestore</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>kiwi-transactions</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>kiwi-tripletable</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>kiwi-reasoner</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>kiwi-versioning</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>ldclient-api</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>ldclient-core</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>ldcache-api</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>ldcache-core</artifactId>
+            <version>${project.version}</version>
+            <classifier>sources</classifier>
+        </dependency>
     </dependencies>
 
 </project>