You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2015/10/02 13:23:51 UTC

[1/2] jena git commit: JENA-1037: Add test case for createOntologyModel(OntModelSpec.OWL_MEM)

Repository: jena
Updated Branches:
  refs/heads/master afad01940 -> 01302b4a6


JENA-1037: Add test case for createOntologyModel(OntModelSpec.OWL_MEM)


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

Branch: refs/heads/master
Commit: 60cdb4ab2bc150c41fd18f16750fc5d8efaadd04
Parents: afad019
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Oct 2 12:19:01 2015 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Oct 2 12:19:01 2015 +0100

----------------------------------------------------------------------
 .../test/java/org/apache/jena/osgi/test/JenaOSGITest.java | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/60cdb4ab/apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java
----------------------------------------------------------------------
diff --git a/apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java b/apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java
index 2cb94f7..ef0d85e 100644
--- a/apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java
+++ b/apache-jena-osgi/jena-osgi-test/src/test/java/org/apache/jena/osgi/test/JenaOSGITest.java
@@ -61,6 +61,8 @@ import org.apache.jena.query.QuerySolution;
 import org.apache.jena.query.ReadWrite;
 import org.apache.jena.query.ResultSet;
 import org.apache.jena.rdf.model.Model;
+import org.apache.jena.ontology.OntModel ;
+import org.apache.jena.ontology.OntModelSpec ;
 import org.apache.jena.rdf.model.ModelFactory;
 import org.apache.jena.rdf.model.Property;
 import org.apache.jena.rdf.model.Resource;
@@ -206,4 +208,12 @@ public class JenaOSGITest {
 		runQuery(dataset);
 		dataset.end();
 	}
+
+	/*
+	@Test
+	public void createOntModel()
+	{ 
+	    final OntModel model = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM);
+	}
+    */
 }


[2/2] jena git commit: JENA-1038: exclude httpcomponents to avoid build warnings

Posted by an...@apache.org.
JENA-1038: exclude httpcomponents to avoid build warnings


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

Branch: refs/heads/master
Commit: 01302b4a6df93de5a65ae9378bf13a2f24125095
Parents: 60cdb4a
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Oct 2 12:19:44 2015 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Oct 2 12:19:44 2015 +0100

----------------------------------------------------------------------
 jena-parent/pom.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/01302b4a/jena-parent/pom.xml
----------------------------------------------------------------------
diff --git a/jena-parent/pom.xml b/jena-parent/pom.xml
index 6dcf76a..220683f 100644
--- a/jena-parent/pom.xml
+++ b/jena-parent/pom.xml
@@ -208,7 +208,15 @@
           <exclusion>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
-          </exclusion>
+	  </exclusion>
+          <exclusion>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpclient-osgi</artifactId>
+	  </exclusion>
+          <exclusion>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpcore-osgi</artifactId>
+	  </exclusion>
           <exclusion>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>