You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by st...@apache.org on 2016/11/16 10:55:19 UTC

svn commit: r1001191 [16/29] - in /websites/production/commonsrdf/content: ./ apidocs/ apidocs/org/apache/commons/rdf/api/ apidocs/org/apache/commons/rdf/api/class-use/ apidocs/org/apache/commons/rdf/experimental/ apidocs/org/apache/commons/rdf/experim...

Added: websites/production/commonsrdf/content/japicmp.xsd
==============================================================================
--- websites/production/commonsrdf/content/japicmp.xsd (added)
+++ websites/production/commonsrdf/content/japicmp.xsd Wed Nov 16 10:55:17 2016
@@ -0,0 +1,447 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+
+  <xs:element name="japicmp" type="jApiCmpXmlRoot"/>
+
+  <xs:complexType name="jApiCmpXmlRoot">
+    <xs:sequence>
+      <xs:element name="classes" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="class" type="jApiClass" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="titleOptional" type="optional" minOccurs="0"/>
+    </xs:sequence>
+    <xs:attribute name="accessModifier" type="xs:string"/>
+    <xs:attribute name="creationTimestamp" type="xs:string"/>
+    <xs:attribute name="ignoreMissingClasses" type="xs:boolean" use="required"/>
+    <xs:attribute name="ignoreMissingClassesByRegularExpressions" type="xs:string"/>
+    <xs:attribute name="newJar" type="xs:string"/>
+    <xs:attribute name="oldJar" type="xs:string"/>
+    <xs:attribute name="onlyBinaryIncompatibleModifications" type="xs:boolean" use="required"/>
+    <xs:attribute name="onlyModifications" type="xs:boolean" use="required"/>
+    <xs:attribute name="packagesExclude" type="xs:string"/>
+    <xs:attribute name="packagesInclude" type="xs:string"/>
+    <xs:attribute name="semanticVersioning" type="xs:string"/>
+    <xs:attribute name="title" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiClass">
+    <xs:sequence>
+      <xs:element name="annotations" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="annotation" type="jApiAnnotation" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="attributes" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="attribute" type="jApiAttribute" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="classType" type="jApiClassType" minOccurs="0"/>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="jApiCompatibilityChange" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="constructors" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="constructor" type="jApiConstructor" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="fields" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="field" type="jApiField" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="interfaces" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="interface" type="jApiImplementedInterface" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="methods" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="method" type="jApiMethod" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="modifiers" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="modifier" type="jApiModifier" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="serialVersionUid" type="jApiSerialVersionUid" minOccurs="0"/>
+      <xs:element name="superclass" type="jApiSuperclass" minOccurs="0"/>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="fullyQualifiedName" type="xs:string"/>
+    <xs:attribute name="javaObjectSerializationCompatible" type="jApiJavaObjectSerializationChangeStatus"/>
+    <xs:attribute name="javaObjectSerializationCompatibleAsString" type="xs:string"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiAnnotation">
+    <xs:sequence>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="jApiCompatibilityChange" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="elements" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="element" type="jApiAnnotationElement" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="fullyQualifiedName" type="xs:string"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiAnnotationElement">
+    <xs:sequence>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="newElementValues" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="newElementValue" type="jApiAnnotationElementValue" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="oldElementValues" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="oldElementValue" type="jApiAnnotationElementValue" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="name" type="xs:string"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiAnnotationElementValue">
+    <xs:sequence>
+      <xs:element name="values" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="value" type="jApiAnnotationElementValue" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:sequence>
+    <xs:attribute name="fullyQualifiedName" type="xs:string"/>
+    <xs:attribute name="name" type="xs:string"/>
+    <xs:attribute name="type" type="xs:string"/>
+    <xs:attribute name="value" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiAttribute">
+    <xs:sequence/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="newValue" type="xs:string"/>
+    <xs:attribute name="oldValue" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiClassType">
+    <xs:sequence/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="newType" type="xs:string"/>
+    <xs:attribute name="oldType" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiConstructor">
+    <xs:complexContent>
+      <xs:extension base="jApiBehavior">
+        <xs:sequence/>
+      </xs:extension>
+    </xs:complexContent>
+  </xs:complexType>
+
+  <xs:complexType name="jApiBehavior">
+    <xs:sequence>
+      <xs:element name="annotations" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="annotation" type="jApiAnnotation" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="attributes" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="attribute" type="jApiAttribute" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="jApiCompatibilityChange" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="exceptions" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="exception" type="jApiException" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="modifiers" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="modifier" type="jApiModifier" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="parameters" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="parameter" type="jApiParameter" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="name" type="xs:string"/>
+    <xs:attribute name="newLineNumber" type="xs:string"/>
+    <xs:attribute name="oldLineNumber" type="xs:string"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiException">
+    <xs:sequence/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="name" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiModifier">
+    <xs:sequence/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="newValue" type="xs:string"/>
+    <xs:attribute name="oldValue" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiParameter">
+    <xs:sequence/>
+    <xs:attribute name="type" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiField">
+    <xs:sequence>
+      <xs:element name="annotations" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="annotation" type="jApiAnnotation" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="attributes" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="attribute" type="jApiAttribute" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="jApiCompatibilityChange" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="modifiers" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="modifier" type="jApiModifier" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element name="type" type="jApiType" minOccurs="0"/>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="name" type="xs:string"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiType">
+    <xs:sequence/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="newValue" type="xs:string"/>
+    <xs:attribute name="oldValue" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiImplementedInterface">
+    <xs:sequence>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="jApiCompatibilityChange" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="fullyQualifiedName" type="xs:string"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiMethod">
+    <xs:complexContent>
+      <xs:extension base="jApiBehavior">
+        <xs:sequence>
+          <xs:element name="returnType" type="jApiReturnType" minOccurs="0"/>
+        </xs:sequence>
+      </xs:extension>
+    </xs:complexContent>
+  </xs:complexType>
+
+  <xs:complexType name="jApiReturnType">
+    <xs:sequence/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="newValue" type="xs:string"/>
+    <xs:attribute name="oldValue" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiSerialVersionUid">
+    <xs:sequence/>
+    <xs:attribute name="serialVersionUidDefaultNew" type="xs:string"/>
+    <xs:attribute name="serialVersionUidDefaultOld" type="xs:string"/>
+    <xs:attribute name="serialVersionUidInClassNew" type="xs:string"/>
+    <xs:attribute name="serialVersionUidInClassOld" type="xs:string"/>
+    <xs:attribute name="serializableNew" type="xs:boolean" use="required"/>
+    <xs:attribute name="serializableOld" type="xs:boolean" use="required"/>
+  </xs:complexType>
+
+  <xs:complexType name="jApiSuperclass">
+    <xs:sequence>
+      <xs:element name="compatibilityChanges" minOccurs="0">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="compatibilityChange" type="jApiCompatibilityChange" minOccurs="0" maxOccurs="unbounded"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:sequence>
+    <xs:attribute name="binaryCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="changeStatus" type="jApiChangeStatus"/>
+    <xs:attribute name="sourceCompatible" type="xs:boolean" use="required"/>
+    <xs:attribute name="superclassNew" type="xs:string"/>
+    <xs:attribute name="superclassOld" type="xs:string"/>
+  </xs:complexType>
+
+  <xs:complexType name="optional" abstract="true">
+    <xs:sequence/>
+  </xs:complexType>
+
+  <xs:simpleType name="jApiChangeStatus">
+    <xs:restriction base="xs:string">
+      <xs:enumeration value="NEW"/>
+      <xs:enumeration value="REMOVED"/>
+      <xs:enumeration value="UNCHANGED"/>
+      <xs:enumeration value="MODIFIED"/>
+    </xs:restriction>
+  </xs:simpleType>
+
+  <xs:simpleType name="jApiCompatibilityChange">
+    <xs:restriction base="xs:string">
+      <xs:enumeration value="CLASS_REMOVED"/>
+      <xs:enumeration value="CLASS_NOW_ABSTRACT"/>
+      <xs:enumeration value="CLASS_NOW_FINAL"/>
+      <xs:enumeration value="CLASS_NO_LONGER_PUBLIC"/>
+      <xs:enumeration value="CLASS_TYPE_CHANGED"/>
+      <xs:enumeration value="CLASS_NOW_CHECKED_EXCEPTION"/>
+      <xs:enumeration value="SUPERCLASS_REMOVED"/>
+      <xs:enumeration value="SUPERCLASS_CHANGED"/>
+      <xs:enumeration value="SUPERCLASS_ADDED"/>
+      <xs:enumeration value="SUPERCLASS_MODIFIED_INCOMPATIBLE"/>
+      <xs:enumeration value="INTERFACE_ADDED"/>
+      <xs:enumeration value="INTERFACE_REMOVED"/>
+      <xs:enumeration value="METHOD_REMOVED"/>
+      <xs:enumeration value="METHOD_REMOVED_IN_SUPERCLASS"/>
+      <xs:enumeration value="METHOD_LESS_ACCESSIBLE"/>
+      <xs:enumeration value="METHOD_LESS_ACCESSIBLE_THAN_IN_SUPERCLASS"/>
+      <xs:enumeration value="METHOD_IS_STATIC_AND_OVERRIDES_NOT_STATIC"/>
+      <xs:enumeration value="METHOD_RETURN_TYPE_CHANGED"/>
+      <xs:enumeration value="METHOD_NOW_ABSTRACT"/>
+      <xs:enumeration value="METHOD_NOW_FINAL"/>
+      <xs:enumeration value="METHOD_NOW_STATIC"/>
+      <xs:enumeration value="METHOD_NO_LONGER_STATIC"/>
+      <xs:enumeration value="METHOD_ADDED_TO_INTERFACE"/>
+      <xs:enumeration value="METHOD_NOW_THROWS_CHECKED_EXCEPTION"/>
+      <xs:enumeration value="METHOD_ABSTRACT_ADDED_TO_CLASS"/>
+      <xs:enumeration value="METHOD_ABSTRACT_ADDED_IN_SUPERCLASS"/>
+      <xs:enumeration value="METHOD_ABSTRACT_ADDED_IN_IMPLEMENTED_INTERFACE"/>
+      <xs:enumeration value="FIELD_STATIC_AND_OVERRIDES_STATIC"/>
+      <xs:enumeration value="FIELD_LESS_ACCESSIBLE_THAN_IN_SUPERCLASS"/>
+      <xs:enumeration value="FIELD_NOW_FINAL"/>
+      <xs:enumeration value="FIELD_NOW_STATIC"/>
+      <xs:enumeration value="FIELD_NO_LONGER_STATIC"/>
+      <xs:enumeration value="FIELD_TYPE_CHANGED"/>
+      <xs:enumeration value="FIELD_REMOVED"/>
+      <xs:enumeration value="FIELD_REMOVED_IN_SUPERCLASS"/>
+      <xs:enumeration value="FIELD_LESS_ACCESSIBLE"/>
+      <xs:enumeration value="CONSTRUCTOR_REMOVED"/>
+      <xs:enumeration value="CONSTRUCTOR_LESS_ACCESSIBLE"/>
+    </xs:restriction>
+  </xs:simpleType>
+
+  <xs:simpleType name="jApiJavaObjectSerializationChangeStatus">
+    <xs:restriction base="xs:string">
+      <xs:enumeration value="NOT_SERIALIZABLE"/>
+      <xs:enumeration value="SERIALIZABLE_COMPATIBLE"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_SERIALVERSIONUID_MODIFIED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_SERIALVERSIONUID_REMOVED_AND_NOT_MACHTES_NEW_DEFAULT"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_SERIALVERSIONUID_ADDED_AND_NOT_MATCHES_OLD_DEFAULT"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_CLASS_TYPE_MODIFIED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_CHANGED_FROM_SERIALIZABLE_TO_EXTERNALIZABLE"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_CHANGED_FROM_EXTERNALIZABLE_TO_SERIALIZABLE"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_SERIALIZABLE_REMOVED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_EXTERNALIZABLE_REMOVED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_FIELD_REMOVED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_FIELD_CHANGED_FROM_NONSTATIC_TO_STATIC"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_FIELD_CHANGED_FROM_NONTRANSIENT_TO_TRANSIENT"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_FIELD_TYPE_MODIFIED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_BUT_SUID_EQUAL"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_CLASS_REMOVED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_DEFAULT_SERIALVERSIONUID_CHANGED"/>
+      <xs:enumeration value="SERIALIZABLE_INCOMPATIBLE_SUPERCLASS_MODIFIED"/>
+    </xs:restriction>
+  </xs:simpleType>
+</xs:schema>
+

Added: websites/production/commonsrdf/content/jdepend-report.html
==============================================================================
--- websites/production/commonsrdf/content/jdepend-report.html (added)
+++ websites/production/commonsrdf/content/jdepend-report.html Wed Nov 16 10:55:17 2016
@@ -0,0 +1,361 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 16 November 2016
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20161116" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Commons RDF API &#x2013; JDepend Report Metrics</title>
+
+  <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
+  <link rel="stylesheet" href="./css/site.css" type="text/css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+  <script type="text/javascript" src="./js/jquery.min.js"></script>
+  <script type="text/javascript" src="./js/bootstrap.min.js"></script>
+  <script type="text/javascript" src="./js/prettify.min.js"></script>
+  <script type="text/javascript" src="./js/site.js"></script>
+
+                            
+<link rel="stylesheet" href="./css/prettify.css" media="all" type="text/css"/>                                
+<script src="./js/prettify.js" type="text/javascript"></script>                                
+<script type="text/javascript">window.onload=function() {
+              prettyPrint();
+          }</script>                  
+      </head>
+
+  <body class="composite">
+                                        <a href="../" id="bannerLeft" title="Apache Commons RDF logo">
+                                                                                                <img class="logo-left" src="images/commonsrdf-logo.png"  alt="Apache Commons RDF logo"/>
+                </a>
+                    <div class="clear"></div>
+
+    <div class="navbar">
+      <div class="navbar-inner">
+        <div class="container-fluid">
+          <a class="brand" href="http://commonsrdf.incubator.apache.org/commons-rdf-api/">Commons RDF API &trade;</a>
+          <ul class="nav">      
+                    
+            <li id="publishDate">Last Published: 16 November 2016</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 0.3.0-incubating</li>
+  </ul>
+                    <div class="pull-right">  <ul class="nav">
+            <li>
+                  <a href="http://www.apachecon.com/" class="externalLink" title="ApacheCon">
+    ApacheCon</a>
+      </li>
+          <li>
+                  <a href="http://www.apache.org" class="externalLink" title="Apache">
+    Apache</a>
+      </li>
+          <li>
+                  <a href="http://commons.apache.org/" class="externalLink" title="Commons">
+    Commons</a>
+      </li>
+          <li>
+                  <a href="http://incubator.apache.org/" class="externalLink" title="Incubator">
+    Incubator</a>
+      </li>
+    </ul>
+</div>
+        </div>
+      </div>
+    </div>
+
+    <div class="container-fluid">
+      <table class="layout-table">
+        <tr>
+          <td class="sidebar">
+            <div class="well sidebar-nav">
+                    <ul class="nav nav-list">
+                                        <li class="nav-header"><i class="icon-info-sign"></i>Project Documentation</li>
+                                                                                                                                                                                                                                                                              <li class="collapsed">
+                  <a href="project-info.html" title="Project Information">
+    Project Information</a>
+                    </li>
+                                                                                                                                                                                                                                                                                               <li class="expanded">
+                  <a href="project-reports.html" title="Project Reports">
+    Project Reports</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="jira-report.html" title="JIRA Report">
+    JIRA Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="apidocs/index.html" title="JavaDocs">
+    JavaDocs</a>
+          </li>
+                                     <li class="none">
+                  <a href="testapidocs/index.html" title="Test JavaDocs">
+    Test JavaDocs</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref/index.html" title="Source Xref">
+    Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref-test/index.html" title="Test Source Xref">
+    Test Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="surefire-report.html" title="Surefire Report">
+    Surefire Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="rat-report.html" title="Rat Report">
+    Rat Report</a>
+          </li>
+                                       <li class="none active">
+                  <a href="jdepend-report.html" title="JDepend">
+    JDepend</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco/index.html" title="JaCoCo Test">
+    JaCoCo Test</a>
+          </li>
+                                     <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                                     <li class="none">
+                  <a href="pmd.html" title="PMD">
+    PMD</a>
+          </li>
+                                     <li class="none">
+                  <a href="findbugs.html" title="FindBugs">
+    FindBugs</a>
+          </li>
+                     </ul>
+              </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Commons</li>
+                                        <li class="none">
+                  <a href="http://commons.apache.org/" class="externalLink" title="Home">
+    Home</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/licenses/" class="externalLink" title="License">
+    License</a>
+          </li>
+                                                                               <li class="collapsed">
+                  <a href="http://commons.apache.org/components.html" class="externalLink" title="Components">
+    Components</a>
+                    </li>
+                                                                               <li class="collapsed">
+                  <a href="http://commons.apache.org/sandbox/index.html" class="externalLink" title="Sandbox">
+    Sandbox</a>
+                    </li>
+                                                                               <li class="collapsed">
+                  <a href="http://commons.apache.org/dormant/index.html" class="externalLink" title="Dormant">
+    Dormant</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">General Information</li>
+                                        <li class="none">
+                  <a href="http://commons.apache.org/security.html" class="externalLink" title="Security">
+    Security</a>
+          </li>
+                             <li class="none">
+                  <a href="http://commons.apache.org/volunteering.html" class="externalLink" title="Volunteering">
+    Volunteering</a>
+          </li>
+                             <li class="none">
+                  <a href="http://commons.apache.org/patches.html" class="externalLink" title="Contributing Patches">
+    Contributing Patches</a>
+          </li>
+                             <li class="none">
+                  <a href="http://commons.apache.org/building.html" class="externalLink" title="Building Components">
+    Building Components</a>
+          </li>
+                             <li class="none">
+                  <a href="http://commons.apache.org/commons-parent-pom.html" class="externalLink" title="Commons Parent Pom">
+    Commons Parent Pom</a>
+          </li>
+                             <li class="none">
+                  <a href="http://commons.apache.org/build-plugin/index.html" class="externalLink" title="Commons Build Plugin">
+    Commons Build Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="http://commons.apache.org/releases/index.html" class="externalLink" title="Releasing Components">
+    Releasing Components</a>
+          </li>
+                             <li class="none">
+                  <a href="http://wiki.apache.org/commons/FrontPage" class="externalLink" title="Wiki">
+    Wiki</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">ASF</li>
+                                        <li class="none">
+                  <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works">
+    How the ASF works</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/getinvolved.html" class="externalLink" title="Get Involved">
+    Get Involved</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/dev/" class="externalLink" title="Developer Resources">
+    Developer Resources</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/policies/conduct.html" class="externalLink" title="Code of Conduct">
+    Code of Conduct</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship">
+    Sponsorship</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks">
+    Thanks</a>
+          </li>
+                 </ul>
+              </div>
+            <div id="poweredBy">
+                                                                                                                    <a href="http://www.apache.org/events/current-event.html" title="ApacheCon" class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" src="http://www.apache.org/events/current-event-125x125.png"    />
+      </a>
+                                                                                                    <a href="http://maven.apache.org/" title="Maven" class="builtBy">
+        <img class="builtBy"  alt="Maven" src="http://maven.apache.org/images/logos/maven-feather.png"    />
+      </a>
+                      </div>
+          </td>
+          <td class="content">
+            <div class="section">
+<h2><a name="Metric_Results"></a>Metric Results</h2>[ <a href="#summary">summary</a> ] [ <a href="#packages">packages</a> ] [ <a href="#cycles">cycles</a> ] [ <a href="#explanations">explanations</a> ] <br /><br />The following document contains the results of a JDepend metric analysis. The various metrics are defined at the bottom of this document.<br /><br /><a name="summary"></a>
+<h2><a name="Summary"></a>Summary</h2>[ <a href="#summary">summary</a> ] [ <a href="#packages">packages</a> ] [ <a href="#cycles">cycles</a> ] [ <a href="#explanations">explanations</a> ] <br /><br />
+<table border="0" class="bodyTable">
+<tr class="a">
+<th>Package</th>
+<th>TC</th>
+<th>CC</th>
+<th>AC</th>
+<th>Ca</th>
+<th>Ce</th>
+<th>A</th>
+<th>I</th>
+<th>D</th>
+<th>V</th></tr>
+<tr class="b">
+<td><a href="#org.apache.commons.rdf.api">org.apache.commons.rdf.api</a></td>
+<td>16</td>
+<td>2</td>
+<td>14</td>
+<td>1</td>
+<td>4</td>
+<td>88.0%</td>
+<td>80.0%</td>
+<td>67.0%</td>
+<td>1</td></tr>
+<tr class="a">
+<td><a href="#org.apache.commons.rdf.experimental">org.apache.commons.rdf.experimental</a></td>
+<td>2</td>
+<td>0</td>
+<td>2</td>
+<td>0</td>
+<td>8</td>
+<td>100.0%</td>
+<td>100.0%</td>
+<td>100.0%</td>
+<td>1</td></tr></table><a name="packages"></a>
+<h2><a name="Packages"></a>Packages</h2>[ <a href="#summary">summary</a> ] [ <a href="#packages">packages</a> ] [ <a href="#cycles">cycles</a> ] [ <a href="#explanations">explanations</a> ] <br /><a name="org.apache.commons.rdf.api"></a>
+<h3><a name="org.apache.commons.rdf.api"></a>org.apache.commons.rdf.api</h3>
+<table border="0" class="bodyTable">
+<tr class="b">
+<th>Afferent Couplings</th>
+<th>Efferent Couplings</th>
+<th>Abstractness</th>
+<th>Instability</th>
+<th>Distance</th></tr>
+<tr class="a">
+<td>1</td>
+<td>4</td>
+<td>88.0%</td>
+<td>80.0%</td>
+<td>67.0%</td></tr></table>
+<table border="0" class="bodyTable">
+<tr class="b">
+<th>Abstract Classes</th>
+<th>Concrete Classes</th>
+<th>Used by Packages</th>
+<th>Uses Packages</th></tr>
+<tr class="a">
+<td>org.apache.commons.rdf.api.BlankNode<br />org.apache.commons.rdf.api.BlankNodeOrIRI<br />org.apache.commons.rdf.api.Dataset<br />org.apache.commons.rdf.api.Graph<br />org.apache.commons.rdf.api.GraphLike<br />org.apache.commons.rdf.api.IRI<br />org.apache.commons.rdf.api.Literal<br />org.apache.commons.rdf.api.Quad<br />org.apache.commons.rdf.api.QuadLike<br />org.apache.commons.rdf.api.RDF<br />org.apache.commons.rdf.api.RDFTerm<br />org.apache.commons.rdf.api.RDFTermFactory<br />org.apache.commons.rdf.api.Triple<br />org.apache.commons.rdf.api.TripleLike<br /></td>
+<td>org.apache.commons.rdf.api.Quad$1<br />org.apache.commons.rdf.api.RDFSyntax<br /></td>
+<td>org.apache.commons.rdf.experimental<br /></td>
+<td>java.lang<br />java.lang.invoke<br />java.util<br />java.util.stream<br /></td></tr></table><a name="org.apache.commons.rdf.experimental"></a>
+<h3><a name="org.apache.commons.rdf.experimental"></a>org.apache.commons.rdf.experimental</h3>
+<table border="0" class="bodyTable">
+<tr class="b">
+<th>Afferent Couplings</th>
+<th>Efferent Couplings</th>
+<th>Abstractness</th>
+<th>Instability</th>
+<th>Distance</th></tr>
+<tr class="a">
+<td>0</td>
+<td>8</td>
+<td>100.0%</td>
+<td>100.0%</td>
+<td>100.0%</td></tr></table>
+<table border="0" class="bodyTable">
+<tr class="b">
+<th>Abstract Classes</th>
+<th>Concrete Classes</th>
+<th>Used by Packages</th>
+<th>Uses Packages</th></tr>
+<tr class="a">
+<td>org.apache.commons.rdf.experimental.RDFParser<br />org.apache.commons.rdf.experimental.RDFParser$ParseResult<br /></td>
+<td><i>None</i></td>
+<td><i>None</i></td>
+<td>java.io<br />java.lang<br />java.lang.invoke<br />java.nio.file<br />java.util<br />java.util.concurrent<br />java.util.function<br />org.apache.commons.rdf.api<br /></td></tr></table><a name="cycles"></a>
+<h2><a name="Cycles"></a>Cycles</h2>[ <a href="#summary">summary</a> ] [ <a href="#packages">packages</a> ] [ <a href="#cycles">cycles</a> ] [ <a href="#explanations">explanations</a> ] <br /><br />There are no cyclic dependencies.<br /><a name="explanations"></a>
+<h2><a name="Explanation"></a>Explanation</h2>[ <a href="#summary">summary</a> ] [ <a href="#packages">packages</a> ] [ <a href="#cycles">cycles</a> ] [ <a href="#explanations">explanations</a> ] <br /><br />The following explanations are for quick reference and are lifted directly from the original JDepend documentation.<br /><br />
+<table border="0" class="bodyTable">
+<tr class="b">
+<th>Term</th>
+<th>Description</th></tr>
+<tr class="a">
+<td>Number of Classes</td>
+<td>The number of concrete and abstract classes (and interfaces) in the package is an indicator of the extensibility of the package.</td></tr>
+<tr class="b">
+<td>Afferent Couplings</td>
+<td>The number of other packages that depend upon classes within the package is an indicator of the package's responsibility.</td></tr>
+<tr class="a">
+<td>Efferent Couplings</td>
+<td>The number of other packages that the classes in the package depend upon is an indicator of the package's independence.</td></tr>
+<tr class="b">
+<td>Abstractness</td>
+<td>The ratio of the number of abstract classes (and interfaces) in the analyzed package to the total number of classes in the analyzed package. The range for this metric is 0 to 1, with A=0 indicating a completely concrete package and A=1 indicating a completely abstract package.</td></tr>
+<tr class="a">
+<td>Instability</td>
+<td>The ratio of efferent coupling (Ce) to total coupling (Ce / (Ce + Ca)). This metric is an indicator of the package's resilience to change. The range for this metric is 0 to 1, with I=0 indicating a completely stable package and I=1 indicating a completely instable package.</td></tr>
+<tr class="b">
+<td>Distance</td>
+<td>The perpendicular distance of a package from the idealized line A + I = 1. This metric is an indicator of the package's balance between abstractness and stability. A package squarely on the main sequence is optimally balanced with respect to its abstractness and stability. Ideal packages are either completely abstract and stable (x=0, y=1) or completely concrete and instable (x=1, y=0). The range for this metric is 0 to 1, with D=0 indicating a package that is coincident with the main sequence and D=1 indicating a package that is as far from the main sequence as possible.</td></tr>
+<tr class="a">
+<td>Cycles</td>
+<td>Packages participating in a package dependency cycle are  in a deadly embrace with respect to reusability and their  release cycle. Package dependency cycles can be easily identified by reviewing the textual reports of dependency cycles. Once these dependency cycles have been identified with JDepend, they can be broken by employing various object-oriented techniques.</td></tr></table></div>
+          </td>
+        </tr>
+      </table>
+    </div>
+
+    <div class="footer">
+      <p>Copyright &copy;                    2015-2016
+                        <a href="https://www.apache.org/">The Apache Software Foundation</a>.
+            All Rights Reserved.</p>
+                                                                  
+<div class="center">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.</div>
+                              </div>
+  </body>
+
+</html>
\ No newline at end of file

Modified: websites/production/commonsrdf/content/jira-report.html
==============================================================================
--- websites/production/commonsrdf/content/jira-report.html (original)
+++ websites/production/commonsrdf/content/jira-report.html Wed Nov 16 10:55:17 2016
@@ -9,7 +9,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="Date-Revision-yyyymmdd" content="20161116" />
     <meta http-equiv="Content-Language" content="en" />
-    <title>Apache Commons RDF &#x2013; JIRA Report</title>
+    <title>Commons RDF API &#x2013; JIRA Report</title>
 
   <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
   <link rel="stylesheet" href="./css/site.css" type="text/css" />
@@ -29,7 +29,7 @@
       </head>
 
   <body class="composite">
-                                        <a href="./" id="bannerLeft" title="Apache Commons RDF logo">
+                                        <a href="../" id="bannerLeft" title="Apache Commons RDF logo">
                                                                                                 <img class="logo-left" src="images/commonsrdf-logo.png"  alt="Apache Commons RDF logo"/>
                 </a>
                     <div class="clear"></div>
@@ -37,7 +37,7 @@
     <div class="navbar">
       <div class="navbar-inner">
         <div class="container-fluid">
-          <a class="brand" href="http://commonsrdf.incubator.apache.org/">Commons RDF &trade;</a>
+          <a class="brand" href="http://commonsrdf.incubator.apache.org/commons-rdf-api/">Commons RDF API &trade;</a>
           <ul class="nav">      
                     
             <li id="publishDate">Last Published: 16 November 2016</li>
@@ -72,89 +72,12 @@
           <td class="sidebar">
             <div class="well sidebar-nav">
                     <ul class="nav nav-list">
-                                  <li class="nav-header">Project</li>
-                                        <li class="none">
-                  <a href="index.html" title="Home">
-    Home</a>
-          </li>
-                             <li class="none">
-                  <a href="apidocs/index.html?org/apache/commons/rdf/api/package-summary.html" title="API">
-    API</a>
-          </li>
-                             <li class="none">
-                  <a href="implementations.html" title="Implementations">
-    Implementations</a>
-          </li>
-                             <li class="none">
-                  <a href="userguide.html" title="User Guide">
-    User Guide</a>
-          </li>
-                             <li class="none">
-                  <a href="download.html" title="Download">
-    Download</a>
-          </li>
-                             <li class="none">
-                  <a href="contributing.html" title="Contributing">
-    Contributing</a>
-          </li>
-                             <li class="none">
-                  <a href="team-list.html" title="Team">
-    Team</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
-                                  <li class="nav-header">Tools</li>
-                                        <li class="none">
-                  <a href="mail-lists.html" title="Mailing Lists">
-    Mailing Lists</a>
-          </li>
-                             <li class="none">
-                  <a href="https://git-wip-us.apache.org/repos/asf/incubator-commonsrdf.git" class="externalLink" title="Source (Git)">
-    Source (Git)</a>
-          </li>
-                             <li class="none">
-                  <a href="https://github.com/apache/incubator-commonsrdf/" class="externalLink" title="Source (GitHub mirror)">
-    Source (GitHub mirror)</a>
-          </li>
-                             <li class="none">
-                  <a href="https://issues.apache.org/jira/browse/COMMONSRDF" class="externalLink" title="Issues (Jira)">
-    Issues (Jira)</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
-                                  <li class="nav-header">Modules</li>
-                                        <li class="none">
-                  <a href="commons-rdf-api/index.html" title="Commons RDF API">
-    Commons RDF API</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-simple/index.html" title="Commons RDF impl: Simple">
-    Commons RDF impl: Simple</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-rdf4j/index.html" title="Commons RDF impl: RDF4j">
-    Commons RDF impl: RDF4j</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-jena/index.html" title="Commons RDF impl: Jena">
-    Commons RDF impl: Jena</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-jsonld-java/index.html" title="Commons RDF impl: JSON-LD Java">
-    Commons RDF impl: JSON-LD Java</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-integration-tests/index.html" title="Commons RDF Integration tests">
-    Commons RDF Integration tests</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-info-sign"></i>Project Documentation</li>
-                                                                                                                                                                                                                                                                                                <li class="collapsed">
+                                                                                                                                                                                                                                                                              <li class="collapsed">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                                                                                                                                                                       <li class="expanded">
+                                                                                                                                                                                                                                                                                               <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -167,6 +90,10 @@
     JavaDocs</a>
           </li>
                                      <li class="none">
+                  <a href="testapidocs/index.html" title="Test JavaDocs">
+    Test JavaDocs</a>
+          </li>
+                                     <li class="none">
                   <a href="xref/index.html" title="Source Xref">
     Source Xref</a>
           </li>
@@ -183,13 +110,25 @@
     Rat Report</a>
           </li>
                                      <li class="none">
-                  <a href="checkstyle-aggregate.html" title="Checkstyle">
-    Checkstyle</a>
+                  <a href="jdepend-report.html" title="JDepend">
+    JDepend</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco/index.html" title="JaCoCo Test">
+    JaCoCo Test</a>
+          </li>
+                                     <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
           </li>
                                      <li class="none">
                   <a href="pmd.html" title="PMD">
     PMD</a>
           </li>
+                                     <li class="none">
+                  <a href="findbugs.html" title="FindBugs">
+    FindBugs</a>
+          </li>
                      </ul>
               </li>
                  </ul>

Modified: websites/production/commonsrdf/content/mail-lists.html
==============================================================================
--- websites/production/commonsrdf/content/mail-lists.html (original)
+++ websites/production/commonsrdf/content/mail-lists.html Wed Nov 16 10:55:17 2016
@@ -9,7 +9,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="Date-Revision-yyyymmdd" content="20161116" />
     <meta http-equiv="Content-Language" content="en" />
-    <title>Apache Commons RDF &#x2013; Project Mailing Lists</title>
+    <title>Commons RDF API &#x2013; Project Mailing Lists</title>
 
   <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
   <link rel="stylesheet" href="./css/site.css" type="text/css" />
@@ -29,7 +29,7 @@
       </head>
 
   <body class="composite">
-                                        <a href="./" id="bannerLeft" title="Apache Commons RDF logo">
+                                        <a href="../" id="bannerLeft" title="Apache Commons RDF logo">
                                                                                                 <img class="logo-left" src="images/commonsrdf-logo.png"  alt="Apache Commons RDF logo"/>
                 </a>
                     <div class="clear"></div>
@@ -37,7 +37,7 @@
     <div class="navbar">
       <div class="navbar-inner">
         <div class="container-fluid">
-          <a class="brand" href="http://commonsrdf.incubator.apache.org/">Commons RDF &trade;</a>
+          <a class="brand" href="http://commonsrdf.incubator.apache.org/commons-rdf-api/">Commons RDF API &trade;</a>
           <ul class="nav">      
                     
             <li id="publishDate">Last Published: 16 November 2016</li>
@@ -72,85 +72,8 @@
           <td class="sidebar">
             <div class="well sidebar-nav">
                     <ul class="nav nav-list">
-                                  <li class="nav-header">Project</li>
-                                        <li class="none">
-                  <a href="index.html" title="Home">
-    Home</a>
-          </li>
-                             <li class="none">
-                  <a href="apidocs/index.html?org/apache/commons/rdf/api/package-summary.html" title="API">
-    API</a>
-          </li>
-                             <li class="none">
-                  <a href="implementations.html" title="Implementations">
-    Implementations</a>
-          </li>
-                             <li class="none">
-                  <a href="userguide.html" title="User Guide">
-    User Guide</a>
-          </li>
-                             <li class="none">
-                  <a href="download.html" title="Download">
-    Download</a>
-          </li>
-                             <li class="none">
-                  <a href="contributing.html" title="Contributing">
-    Contributing</a>
-          </li>
-                             <li class="none">
-                  <a href="team-list.html" title="Team">
-    Team</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
-                                  <li class="nav-header">Tools</li>
-                                          <li class="none active">
-                  <a href="mail-lists.html" title="Mailing Lists">
-    Mailing Lists</a>
-          </li>
-                             <li class="none">
-                  <a href="https://git-wip-us.apache.org/repos/asf/incubator-commonsrdf.git" class="externalLink" title="Source (Git)">
-    Source (Git)</a>
-          </li>
-                             <li class="none">
-                  <a href="https://github.com/apache/incubator-commonsrdf/" class="externalLink" title="Source (GitHub mirror)">
-    Source (GitHub mirror)</a>
-          </li>
-                             <li class="none">
-                  <a href="https://issues.apache.org/jira/browse/COMMONSRDF" class="externalLink" title="Issues (Jira)">
-    Issues (Jira)</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
-                                  <li class="nav-header">Modules</li>
-                                        <li class="none">
-                  <a href="commons-rdf-api/index.html" title="Commons RDF API">
-    Commons RDF API</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-simple/index.html" title="Commons RDF impl: Simple">
-    Commons RDF impl: Simple</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-rdf4j/index.html" title="Commons RDF impl: RDF4j">
-    Commons RDF impl: RDF4j</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-jena/index.html" title="Commons RDF impl: Jena">
-    Commons RDF impl: Jena</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-jsonld-java/index.html" title="Commons RDF impl: JSON-LD Java">
-    Commons RDF impl: JSON-LD Java</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-integration-tests/index.html" title="Commons RDF Integration tests">
-    Commons RDF Integration tests</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-info-sign"></i>Project Documentation</li>
-                                                                                                                                                                                                                                                                                                          <li class="expanded">
+                                                                                                                                                                                                                                                                                        <li class="expanded">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     <ul>
@@ -163,10 +86,6 @@
     Summary</a>
           </li>
                                      <li class="none">
-                  <a href="modules.html" title="Project Modules">
-    Project Modules</a>
-          </li>
-                                     <li class="none">
                   <a href="team-list.html" title="Team">
     Team</a>
           </li>
@@ -204,7 +123,7 @@
           </li>
                      </ul>
               </li>
-                                                                                                                                                                                                             <li class="collapsed">
+                                                                                                                                                                                                                                                                                     <li class="collapsed">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     </li>

Modified: websites/production/commonsrdf/content/pmd.html
==============================================================================
--- websites/production/commonsrdf/content/pmd.html (original)
+++ websites/production/commonsrdf/content/pmd.html Wed Nov 16 10:55:17 2016
@@ -9,7 +9,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="Date-Revision-yyyymmdd" content="20161116" />
     <meta http-equiv="Content-Language" content="en" />
-    <title>Apache Commons RDF &#x2013; PMD Results</title>
+    <title>Commons RDF API &#x2013; PMD Results</title>
 
   <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
   <link rel="stylesheet" href="./css/site.css" type="text/css" />
@@ -29,7 +29,7 @@
       </head>
 
   <body class="composite">
-                                        <a href="./" id="bannerLeft" title="Apache Commons RDF logo">
+                                        <a href="../" id="bannerLeft" title="Apache Commons RDF logo">
                                                                                                 <img class="logo-left" src="images/commonsrdf-logo.png"  alt="Apache Commons RDF logo"/>
                 </a>
                     <div class="clear"></div>
@@ -37,7 +37,7 @@
     <div class="navbar">
       <div class="navbar-inner">
         <div class="container-fluid">
-          <a class="brand" href="http://commonsrdf.incubator.apache.org/">Commons RDF &trade;</a>
+          <a class="brand" href="http://commonsrdf.incubator.apache.org/commons-rdf-api/">Commons RDF API &trade;</a>
           <ul class="nav">      
                     
             <li id="publishDate">Last Published: 16 November 2016</li>
@@ -72,89 +72,12 @@
           <td class="sidebar">
             <div class="well sidebar-nav">
                     <ul class="nav nav-list">
-                                  <li class="nav-header">Project</li>
-                                        <li class="none">
-                  <a href="index.html" title="Home">
-    Home</a>
-          </li>
-                             <li class="none">
-                  <a href="apidocs/index.html?org/apache/commons/rdf/api/package-summary.html" title="API">
-    API</a>
-          </li>
-                             <li class="none">
-                  <a href="implementations.html" title="Implementations">
-    Implementations</a>
-          </li>
-                             <li class="none">
-                  <a href="userguide.html" title="User Guide">
-    User Guide</a>
-          </li>
-                             <li class="none">
-                  <a href="download.html" title="Download">
-    Download</a>
-          </li>
-                             <li class="none">
-                  <a href="contributing.html" title="Contributing">
-    Contributing</a>
-          </li>
-                             <li class="none">
-                  <a href="team-list.html" title="Team">
-    Team</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
-                                  <li class="nav-header">Tools</li>
-                                        <li class="none">
-                  <a href="mail-lists.html" title="Mailing Lists">
-    Mailing Lists</a>
-          </li>
-                             <li class="none">
-                  <a href="https://git-wip-us.apache.org/repos/asf/incubator-commonsrdf.git" class="externalLink" title="Source (Git)">
-    Source (Git)</a>
-          </li>
-                             <li class="none">
-                  <a href="https://github.com/apache/incubator-commonsrdf/" class="externalLink" title="Source (GitHub mirror)">
-    Source (GitHub mirror)</a>
-          </li>
-                             <li class="none">
-                  <a href="https://issues.apache.org/jira/browse/COMMONSRDF" class="externalLink" title="Issues (Jira)">
-    Issues (Jira)</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
-                                  <li class="nav-header">Modules</li>
-                                        <li class="none">
-                  <a href="commons-rdf-api/index.html" title="Commons RDF API">
-    Commons RDF API</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-simple/index.html" title="Commons RDF impl: Simple">
-    Commons RDF impl: Simple</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-rdf4j/index.html" title="Commons RDF impl: RDF4j">
-    Commons RDF impl: RDF4j</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-jena/index.html" title="Commons RDF impl: Jena">
-    Commons RDF impl: Jena</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-jsonld-java/index.html" title="Commons RDF impl: JSON-LD Java">
-    Commons RDF impl: JSON-LD Java</a>
-          </li>
-                             <li class="none">
-                  <a href="commons-rdf-integration-tests/index.html" title="Commons RDF Integration tests">
-    Commons RDF Integration tests</a>
-          </li>
-                 </ul>
-      <ul class="nav nav-list">
                                         <li class="nav-header"><i class="icon-info-sign"></i>Project Documentation</li>
-                                                                                                                                                                                                                                                                                                <li class="collapsed">
+                                                                                                                                                                                                                                                                              <li class="collapsed">
                   <a href="project-info.html" title="Project Information">
     Project Information</a>
                     </li>
-                                                                                                                                                                                                                       <li class="expanded">
+                                                                                                                                                                                                                                                                                               <li class="expanded">
                   <a href="project-reports.html" title="Project Reports">
     Project Reports</a>
                     <ul>
@@ -167,6 +90,10 @@
     JavaDocs</a>
           </li>
                                      <li class="none">
+                  <a href="testapidocs/index.html" title="Test JavaDocs">
+    Test JavaDocs</a>
+          </li>
+                                     <li class="none">
                   <a href="xref/index.html" title="Source Xref">
     Source Xref</a>
           </li>
@@ -183,13 +110,25 @@
     Rat Report</a>
           </li>
                                      <li class="none">
-                  <a href="checkstyle-aggregate.html" title="Checkstyle">
-    Checkstyle</a>
+                  <a href="jdepend-report.html" title="JDepend">
+    JDepend</a>
+          </li>
+                                     <li class="none">
+                  <a href="jacoco/index.html" title="JaCoCo Test">
+    JaCoCo Test</a>
+          </li>
+                                     <li class="none">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
           </li>
                                        <li class="none active">
                   <a href="pmd.html" title="PMD">
     PMD</a>
           </li>
+                                     <li class="none">
+                  <a href="findbugs.html" title="FindBugs">
+    FindBugs</a>
+          </li>
                      </ul>
               </li>
                  </ul>
@@ -295,7 +234,7 @@
 <div class="section">
 <h2><a name="Files"></a>Files</h2>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiBlankNode.java"></a>Commons RDF API - org/apache/commons/rdf/api/BlankNode.java</h3>
+<h3><a name="orgapachecommonsrdfapiBlankNode.java"></a>org/apache/commons/rdf/api/BlankNode.java</h3>
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Violation</th>
@@ -307,7 +246,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/BlankNode.html#L118">118</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiIRI.java"></a>Commons RDF API - org/apache/commons/rdf/api/IRI.java</h3>
+<h3><a name="orgapachecommonsrdfapiIRI.java"></a>org/apache/commons/rdf/api/IRI.java</h3>
 <table border="0" class="bodyTable">
 <tr class="b">
 <th>Violation</th>
@@ -319,7 +258,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/IRI.html#L76">76</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiLiteral.java"></a>Commons RDF API - org/apache/commons/rdf/api/Literal.java</h3>
+<h3><a name="orgapachecommonsrdfapiLiteral.java"></a>org/apache/commons/rdf/api/Literal.java</h3>
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Violation</th>
@@ -331,7 +270,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/Literal.html#L128">128</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiQuad.java"></a>Commons RDF API - org/apache/commons/rdf/api/Quad.java</h3>
+<h3><a name="orgapachecommonsrdfapiQuad.java"></a>org/apache/commons/rdf/api/Quad.java</h3>
 <table border="0" class="bodyTable">
 <tr class="b">
 <th>Violation</th>
@@ -343,7 +282,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/Quad.html#L234">234</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiRDF.java"></a>Commons RDF API - org/apache/commons/rdf/api/RDF.java</h3>
+<h3><a name="orgapachecommonsrdfapiRDF.java"></a>org/apache/commons/rdf/api/RDF.java</h3>
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Violation</th>
@@ -379,7 +318,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/RDF.html#L255">255</a>&#x2013;<a href="./xref/org/apache/commons/rdf/api/RDF.html#L256">256</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiRDFTerm.java"></a>Commons RDF API - org/apache/commons/rdf/api/RDFTerm.java</h3>
+<h3><a name="orgapachecommonsrdfapiRDFTerm.java"></a>org/apache/commons/rdf/api/RDFTerm.java</h3>
 <table border="0" class="bodyTable">
 <tr class="b">
 <th>Violation</th>
@@ -391,7 +330,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/RDFTerm.html#L105">105</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfapiTriple.java"></a>Commons RDF API - org/apache/commons/rdf/api/Triple.java</h3>
+<h3><a name="orgapachecommonsrdfapiTriple.java"></a>org/apache/commons/rdf/api/Triple.java</h3>
 <table border="0" class="bodyTable">
 <tr class="a">
 <th>Violation</th>
@@ -403,7 +342,7 @@
 <td>Avoid modifiers which are implied by the context</td>
 <td><a href="./xref/org/apache/commons/rdf/api/Triple.html#L124">124</a></td></tr></table></div>
 <div class="section">
-<h3><a name="Commons_RDF_API_-_orgapachecommonsrdfexperimentalRDFParser.java"></a>Commons RDF API - org/apache/commons/rdf/experimental/RDFParser.java</h3>
+<h3><a name="orgapachecommonsrdfexperimentalRDFParser.java"></a>org/apache/commons/rdf/experimental/RDFParser.java</h3>
 <table border="0" class="bodyTable">
 <tr class="b">
 <th>Violation</th>
@@ -413,355 +352,7 @@
 <td><a href="./xref/org/apache/commons/rdf/experimental/RDFParser.html#L22">22</a></td></tr>
 <tr class="b">
 <td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/experimental/RDFParser.html#L93">93</a>&#x2013;<a href="./xref/org/apache/commons/rdf/experimental/RDFParser.html#L94">94</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaJenaDataset.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/JenaDataset.java</h3>
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.Dataset' due to existing import 'org.apache.commons.rdf.api.Dataset'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaDataset.html#L31">31</a></td></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaDataset.html#L41">41</a></td></tr>
-<tr class="b">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaDataset.html#L54">54</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaJenaGraph.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/JenaGraph.java</h3>
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="b">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaGraph.html#L41">41</a></td></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaGraph.html#L55">55</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaJenaQuadLike.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/JenaQuadLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaQuadLike.html#L42">42</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaJenaRDFTerm.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/JenaRDFTerm.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaRDFTerm.html#L34">34</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaJenaTripleLike.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/JenaTripleLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.TripleLike' due to existing import 'org.apache.commons.rdf.api.TripleLike'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/JenaTripleLike.html#L37">37</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaimplAbstractQuadLike.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/impl/AbstractQuadLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.sparql.core.Quad' due to existing import 'org.apache.jena.sparql.core.Quad'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L59">59</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.graph.Triple' due to existing import 'org.apache.jena.graph.Triple'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L60">60</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.sparql.core.Quad' due to existing import 'org.apache.jena.sparql.core.Quad'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L74">74</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.graph.Triple' due to existing import 'org.apache.jena.graph.Triple'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L83">83</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.sparql.core.Quad' due to existing import 'org.apache.jena.sparql.core.Quad'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L92">92</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.sparql.core.Quad.create' due to existing import 'org.apache.jena.sparql.core.Quad'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L95">95</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.graph.Triple' due to existing import 'org.apache.jena.graph.Triple'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L102">102</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.jena.graph.Triple.create' due to existing import 'org.apache.jena.graph.Triple'</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/AbstractQuadLike.html#L105">105</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaimplInternalJenaFactory.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/impl/InternalJenaFactory.java</h3>
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="b">
-<td>Avoid empty if statements</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/InternalJenaFactory.html#L152">152</a>&#x2013;<a href="./xref/org/apache/commons/rdf/jena/impl/InternalJenaFactory.html#L155">155</a></td></tr>
-<tr class="a">
-<td>Avoid empty if statements</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/InternalJenaFactory.html#L156">156</a>&#x2013;<a href="./xref/org/apache/commons/rdf/jena/impl/InternalJenaFactory.html#L159">159</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaimplJenaGraphImpl.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/impl/JenaGraphImpl.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Double checked locking is not thread safe in Java.</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/JenaGraphImpl.html#L143">143</a>&#x2013;<a href="./xref/org/apache/commons/rdf/jena/impl/JenaGraphImpl.html#L155">155</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Jena_-_orgapachecommonsrdfjenaimplJenaQuadImpl.java"></a>Commons RDF impl: Jena - org/apache/commons/rdf/jena/impl/JenaQuadImpl.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Useless parentheses.</td>
-<td><a href="./xref/org/apache/commons/rdf/jena/impl/JenaQuadImpl.html#L41">41</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_JSON-LD_Java_-_orgapachecommonsrdfjsonldjavaJsonLdDataset.java"></a>Commons RDF impl: JSON-LD Java - org/apache/commons/rdf/jsonldjava/JsonLdDataset.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.Quad' due to existing import 'org.apache.commons.rdf.api.Quad'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdDataset.html#L35">35</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.Quad' due to existing import 'org.apache.commons.rdf.api.Quad'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdDataset.html#L38">38</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'com.github.jsonldjava.core.RDFDataset.Quad' due to existing import 'com.github.jsonldjava.core.RDFDataset'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdDataset.html#L107">107</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_JSON-LD_Java_-_orgapachecommonsrdfjsonldjavaJsonLdGraph.java"></a>Commons RDF impl: JSON-LD Java - org/apache/commons/rdf/jsonldjava/JsonLdGraph.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'com.github.jsonldjava.core.RDFDataset.Quad' due to existing import 'com.github.jsonldjava.core.RDFDataset'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdGraph.html#L109">109</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_JSON-LD_Java_-_orgapachecommonsrdfjsonldjavaJsonLdGraphLike.java"></a>Commons RDF impl: JSON-LD Java - org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.html#L58">58</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_JSON-LD_Java_-_orgapachecommonsrdfjsonldjavaJsonLdTripleLike.java"></a>Commons RDF impl: JSON-LD Java - org/apache/commons/rdf/jsonldjava/JsonLdTripleLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdTripleLike.html#L30">30</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_JSON-LD_Java_-_orgapachecommonsrdfjsonldjavaJsonLdUnionGraph.java"></a>Commons RDF impl: JSON-LD Java - org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.Triple' due to existing import 'org.apache.commons.rdf.api.Triple'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.html#L47">47</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.Triple' due to existing import 'org.apache.commons.rdf.api.Triple'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.html#L50">50</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'com.github.jsonldjava.core.RDFDataset.Quad' due to existing import 'com.github.jsonldjava.core.RDFDataset'</td>
-<td><a href="./xref/org/apache/commons/rdf/jsonldjava/JsonLdUnionGraph.html#L103">103</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4J.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4J.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L408">408</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L408">408</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L412">412</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L415">415</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L562">562</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L571">571</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.model.Resource' due to existing import 'org.eclipse.rdf4j.model.Resource'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4J.html#L572">572</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JBlankNode.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JBlankNode.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JBlankNode.html#L35">35</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JBlankNodeOrIRI.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JBlankNodeOrIRI.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JBlankNodeOrIRI.html#L35">35</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JDataset.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JDataset.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid unused imports such as 'org.apache.commons.rdf.rdf4j.RDF4J.Option'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JDataset.html#L28">28</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JGraph.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JGraph.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid unused imports such as 'org.apache.commons.rdf.rdf4j.RDF4J.Option'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JGraph.html#L31">31</a></td></tr>
-<tr class="b">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JGraph.html#L72">72</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JGraphLike.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JGraphLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="b">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JGraphLike.html#L52">52</a></td></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JGraphLike.html#L64">64</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JTerm.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JTerm.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JTerm.html#L38">38</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jRDF4JTripleLike.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/RDF4JTripleLike.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/RDF4JTripleLike.html#L42">42</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jexperimentalRDF4JParser.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/experimental/RDF4JParser.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid unused imports such as 'org.apache.commons.rdf.api.RDFSyntax'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/experimental/RDF4JParser.html#L32">32</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.rio.RDFHandlerException' due to existing import 'org.eclipse.rdf4j.rio.RDFHandlerException'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/experimental/RDF4JParser.html#L70">70</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.eclipse.rdf4j.rio.RDFHandlerException' due to existing import 'org.eclipse.rdf4j.rio.RDFHandlerException'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/experimental/RDF4JParser.html#L94">94</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jimplInternalRDF4JFactory.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/impl/InternalRDF4JFactory.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid unused imports such as 'org.apache.commons.rdf.rdf4j.RDF4J.Option'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/impl/InternalRDF4JFactory.html#L31">31</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jimplModelGraphImpl.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/impl/ModelGraphImpl.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.IRI' due to existing import 'org.apache.commons.rdf.api.IRI'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/impl/ModelGraphImpl.html#L51">51</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.IRI' due to existing import 'org.apache.commons.rdf.api.IRI'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/impl/ModelGraphImpl.html#L76">76</a></td></tr>
-<tr class="a">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.IRI' due to existing import 'org.apache.commons.rdf.api.IRI'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/impl/ModelGraphImpl.html#L87">87</a></td></tr>
-<tr class="b">
-<td>Unnecessary use of fully qualified name 'org.apache.commons.rdf.api.IRI' due to existing import 'org.apache.commons.rdf.api.IRI'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/impl/ModelGraphImpl.html#L115">115</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_RDF4j_-_orgapachecommonsrdfrdf4jpackage-info.java"></a>Commons RDF impl: RDF4j - org/apache/commons/rdf/rdf4j/package-info.java</h3>
-<table border="0" class="bodyTable">
-<tr class="a">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="b">
-<td>No need to import a type that lives in the same package</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/package-info.html#L51">51</a></td></tr>
-<tr class="a">
-<td>Avoid unused imports such as 'org.apache.commons.rdf.rdf4j.RDF4J.Option'</td>
-<td><a href="./xref/org/apache/commons/rdf/rdf4j/package-info.html#L52">52</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Simple_-_orgapachecommonsrdfsimpleGraphImpl.java"></a>Commons RDF impl: Simple - org/apache/commons/rdf/simple/GraphImpl.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid unused imports such as 'java.util.Objects'</td>
-<td><a href="./xref/org/apache/commons/rdf/simple/GraphImpl.html#L24">24</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Simple_-_orgapachecommonsrdfsimpleSimpleRDF.java"></a>Commons RDF impl: Simple - org/apache/commons/rdf/simple/SimpleRDF.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid modifiers which are implied by the context</td>
-<td><a href="./xref/org/apache/commons/rdf/simple/SimpleRDF.html#L50">50</a>&#x2013;<a href="./xref/org/apache/commons/rdf/simple/SimpleRDF.html#L51">51</a></td></tr></table></div>
-<div class="section">
-<h3><a name="Commons_RDF_impl:_Simple_-_orgapachecommonsrdfsimpleexperimentalAbstractRDFParser.java"></a>Commons RDF impl: Simple - org/apache/commons/rdf/simple/experimental/AbstractRDFParser.java</h3>
-<table border="0" class="bodyTable">
-<tr class="b">
-<th>Violation</th>
-<th>Line</th></tr>
-<tr class="a">
-<td>Avoid using java.lang.ThreadGroup; it is not thread safe</td>
-<td><a href="./xref/org/apache/commons/rdf/simple/experimental/AbstractRDFParser.html#L61">61</a></td></tr></table></div></div>
+<td><a href="./xref/org/apache/commons/rdf/experimental/RDFParser.html#L93">93</a>&#x2013;<a href="./xref/org/apache/commons/rdf/experimental/RDFParser.html#L94">94</a></td></tr></table></div></div>
           </td>
         </tr>
       </table>

Added: websites/production/commonsrdf/content/profile.jacoco
==============================================================================
    (empty)

Added: websites/production/commonsrdf/content/profile.japicmp
==============================================================================
    (empty)