You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2012/10/24 19:13:31 UTC

svn commit: r1401786 - in /jena/trunk: apache-jena/ jena-arq/ jena-arq/src/test/java/com/hp/hpl/jena/sparql/algebra/optimize/ jena-core/ jena-examples/ jena-fuseki/ jena-iri/ jena-larq/ jena-parent/ jena-sdb/ jena-tdb/

Author: rvesse
Date: Wed Oct 24 17:13:30 2012
New Revision: 1401786

URL: http://svn.apache.org/viewvc?rev=1401786&view=rev
Log:
Add friendly <name>s to POMs, improve descriptions, add missing svn:ignore for .settings on apache-jena

Modified:
    jena/trunk/apache-jena/   (props changed)
    jena/trunk/apache-jena/pom.xml
    jena/trunk/jena-arq/pom.xml
    jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/algebra/optimize/TestOptimizer.java
    jena/trunk/jena-core/pom.xml
    jena/trunk/jena-examples/pom.xml
    jena/trunk/jena-fuseki/pom.xml
    jena/trunk/jena-iri/pom.xml
    jena/trunk/jena-larq/pom.xml
    jena/trunk/jena-parent/pom.xml
    jena/trunk/jena-sdb/pom.xml
    jena/trunk/jena-tdb/pom.xml

Propchange: jena/trunk/apache-jena/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Oct 24 17:13:30 2012
@@ -1,3 +1,4 @@
 target
 tmp
 .project
+.settings

Modified: jena/trunk/apache-jena/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/apache-jena/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/apache-jena/pom.xml (original)
+++ jena/trunk/apache-jena/pom.xml Wed Oct 24 17:13:30 2012
@@ -27,10 +27,12 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>apache-jena</artifactId>
   <packaging>pom</packaging>
-  <name>apache-jena</name>
-  <description />
+  <name>Apache Jena - Distribution</name>
   <url>http://jena.apache.org/</url>
   <version>2.7.5-SNAPSHOT</version>
+  <description>
+    Apache Jena is a API and toolkit for working with semantic web technologies such as RDF and SPARQL using Java.  This artifact represents the source and binary distribution packages generated for releases.
+  </description>
 
   <parent>
     <groupId>org.apache.jena</groupId>

Modified: jena/trunk/jena-arq/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-arq/pom.xml (original)
+++ jena/trunk/jena-arq/pom.xml Wed Oct 24 17:13:30 2012
@@ -21,7 +21,7 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-arq</artifactId>
   <packaging>jar</packaging>
-  <name>jena-arq</name>
+  <name>Apache Jena - ARQ (SPARQL 1.1 Query Engine)</name>
   <version>2.9.5-SNAPSHOT</version>
 
   <parent>
@@ -43,7 +43,7 @@
     </repository>
   </repositories>
 
-  <description>ARQ is a SPARQL 1.1 query engine for Jena</description>
+  <description>ARQ is a SPARQL 1.1 query engine for Apache Jena</description>
 
   <scm>
     <connection>scm:svn:https://svn.apache.org/repos/asf/jena/trunk/jena-arq</connection>

Modified: jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/algebra/optimize/TestOptimizer.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/algebra/optimize/TestOptimizer.java?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/algebra/optimize/TestOptimizer.java (original)
+++ jena/trunk/jena-arq/src/test/java/com/hp/hpl/jena/sparql/algebra/optimize/TestOptimizer.java Wed Oct 24 17:13:30 2012
@@ -323,8 +323,6 @@ public class TestOptimizer extends BaseT
     }
 
     
-
-    
     private static void check(String queryString, String opExpectedString)
     {
         queryString = "PREFIX : <http://example/>\n"+queryString ;

Modified: jena/trunk/jena-core/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-core/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-core/pom.xml (original)
+++ jena/trunk/jena-core/pom.xml Wed Oct 24 17:13:30 2012
@@ -21,7 +21,7 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-core</artifactId>
   <packaging>jar</packaging>
-  <name>jena-core</name>
+  <name>Apache Jena - CORE API</name>
   <version>2.7.5-SNAPSHOT</version>
 
   <parent>

Modified: jena/trunk/jena-examples/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-examples/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-examples/pom.xml (original)
+++ jena/trunk/jena-examples/pom.xml Wed Oct 24 17:13:30 2012
@@ -26,7 +26,7 @@
   <version>0.0.1-SNAPSHOT</version>
   <packaging>jar</packaging>
 
-  <name>jena-examples</name>
+  <name>Apache Jena - Code Examples</name>
   <description>A collection of example code illustrating uses of Apache Jena</description>
   <url>http://jena.apache.org/</url>
 

Modified: jena/trunk/jena-fuseki/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-fuseki/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-fuseki/pom.xml (original)
+++ jena/trunk/jena-fuseki/pom.xml Wed Oct 24 17:13:30 2012
@@ -21,9 +21,9 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-fuseki</artifactId>
   <packaging>jar</packaging>
-  <name>jena-fuseki</name>
+  <name>Apache Jena - Fuseki (SPARQL 1.1 Server)</name>
   <version>0.2.6-SNAPSHOT</version>
-  <description>Jena SPARQL Server</description>
+  <description>Fuseki is a SPARQL 1.1 Server which provides query, update and graph store protocol endpoints that can be used to expose triple store(s) over HTTP</description>
   <url>http://jena.apache.org/</url>
 
   <parent>

Modified: jena/trunk/jena-iri/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-iri/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-iri/pom.xml (original)
+++ jena/trunk/jena-iri/pom.xml Wed Oct 24 17:13:30 2012
@@ -23,9 +23,11 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-iri</artifactId>
   <packaging>jar</packaging>
-  <name>jena-iri</name>
+  <name>Apache Jena - IRI</name>
   <version>0.9.5-SNAPSHOT</version>
-  <description />
+  <description>
+    The IRI module provides an implementation of the IRI and URI specifications (RFC 3987 and 3986) which are used across Jena in order to comply with relevant W3C specifications for RDF and SPARQL which require conformance to these specifications.
+  </description>
 
   <parent>
     <groupId>org.apache.jena</groupId>

Modified: jena/trunk/jena-larq/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-larq/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-larq/pom.xml (original)
+++ jena/trunk/jena-larq/pom.xml Wed Oct 24 17:13:30 2012
@@ -29,7 +29,7 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-larq</artifactId>
   <packaging>jar</packaging>
-  <name>LARQ</name>
+  <name>Apache Jena - LARQ (Full Text Indexing Extension)</name>
   <version>1.0.1-SNAPSHOT</version>
 
   <!-- Need if the parent is a snapshot -->
@@ -45,7 +45,7 @@
   </repositories>
 
   <description>LARQ extends ARQ with free text queries for SPARQL. Indexing and searching is done using Apache Lucene.</description>
-  <url>http://jena.apache.org//documentation/larq/</url>
+  <url>http://jena.apache.org/documentation/larq/</url>
 
   <scm>
     <connection>scm:svn:https://svn.apache.org/repos/asf/jena/trunk/jena-larq</connection>

Modified: jena/trunk/jena-parent/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-parent/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-parent/pom.xml (original)
+++ jena/trunk/jena-parent/pom.xml Wed Oct 24 17:13:30 2012
@@ -18,12 +18,12 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
-  <name>jena-parent</name>
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-parent</artifactId>
   <packaging>pom</packaging>
   <url>http://jena.apache.org/</url>
   <version>5-SNAPSHOT</version>
+  <name>Apache Jena - Parent</name>
 
   <parent>
     <groupId>org.apache</groupId>

Modified: jena/trunk/jena-sdb/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-sdb/pom.xml (original)
+++ jena/trunk/jena-sdb/pom.xml Wed Oct 24 17:13:30 2012
@@ -23,7 +23,7 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-sdb</artifactId>
   <packaging>jar</packaging>
-  <name>jena-sdb</name>
+  <name>Apache Jena - SDB (SQL based triple store)</name>
   <version>1.3.6-SNAPSHOT</version>
 
   <parent>
@@ -33,7 +33,7 @@
     <relativePath>../jena-parent</relativePath>
   </parent> 
 
-  <description>SDB is a persistence layer that uses an SQL database.</description>
+  <description>SDB is a persistence layer for use with Apache Jena that uses an SQL database to store triples/quads.</description>
 
   <scm>
     <connection>scm:svn:https://svn.apache.org/repos/asf/jena/trunk/jena-sdb/</connection>

Modified: jena/trunk/jena-tdb/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-tdb/pom.xml?rev=1401786&r1=1401785&r2=1401786&view=diff
==============================================================================
--- jena/trunk/jena-tdb/pom.xml (original)
+++ jena/trunk/jena-tdb/pom.xml Wed Oct 24 17:13:30 2012
@@ -21,7 +21,7 @@
   <groupId>org.apache.jena</groupId>
   <artifactId>jena-tdb</artifactId>
   <packaging>jar</packaging>
-  <name>jena-tdb</name>
+  <name>Apache Jena - TDB (Native Triple Store)</name>
   <version>0.9.5-SNAPSHOT</version>
 
   <parent>
@@ -43,7 +43,7 @@
     </repository>
   </repositories>
 
-  <description>TDB is a storage subsystem for Jena and ARQ</description>
+  <description>TDB is a storage subsystem for Jena and ARQ, it is a native triple store providing persisent disk based storage of triples/quads.</description>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/jena/trunk/jena-tdb</connection>