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 2013/08/08 18:46:08 UTC

svn commit: r1511864 - in /jena/trunk/jena-jdbc: ./ jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/connections/ jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/results/

Author: rvesse
Date: Thu Aug  8 16:46:08 2013
New Revision: 1511864

URL: http://svn.apache.org/r1511864
Log:
Reference jena-parent in POM and account for Fuseki.defaultConfiguration() signature changes

Modified:
    jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/connections/TestRemoteEndpointConnectionWithAuth.java
    jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/results/TestRemoteEndpointResultsWithAuth.java
    jena/trunk/jena-jdbc/pom.xml

Modified: jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/connections/TestRemoteEndpointConnectionWithAuth.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/connections/TestRemoteEndpointConnectionWithAuth.java?rev=1511864&r1=1511863&r2=1511864&view=diff
==============================================================================
--- jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/connections/TestRemoteEndpointConnectionWithAuth.java (original)
+++ jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/connections/TestRemoteEndpointConnectionWithAuth.java Thu Aug  8 16:46:08 2013
@@ -82,7 +82,7 @@ public class TestRemoteEndpointConnectio
 
         DatasetGraph dsg = DatasetGraphFactory.createMem();
         // This must agree with ServerTest
-        ServerConfig conf = FusekiConfig.defaultConfiguration(ServerTest.datasetPath, dsg, true);
+        ServerConfig conf = FusekiConfig.defaultConfiguration(ServerTest.datasetPath, dsg, true, false);
         conf.port = ServerTest.port;
         conf.pagesPort = ServerTest.port;
         conf.authConfigFile = realmFile.getAbsolutePath();

Modified: jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/results/TestRemoteEndpointResultsWithAuth.java
URL: http://svn.apache.org/viewvc/jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/results/TestRemoteEndpointResultsWithAuth.java?rev=1511864&r1=1511863&r2=1511864&view=diff
==============================================================================
--- jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/results/TestRemoteEndpointResultsWithAuth.java (original)
+++ jena/trunk/jena-jdbc/jena-jdbc-driver-remote/src/test/java/org/apache/jena/jdbc/remote/results/TestRemoteEndpointResultsWithAuth.java Thu Aug  8 16:46:08 2013
@@ -87,7 +87,7 @@ public class TestRemoteEndpointResultsWi
 
         DatasetGraph dsg = DatasetGraphFactory.createMem();
         // This must agree with ServerTest
-        ServerConfig conf = FusekiConfig.defaultConfiguration(ServerTest.datasetPath, dsg, true);
+        ServerConfig conf = FusekiConfig.defaultConfiguration(ServerTest.datasetPath, dsg, true, false);
         conf.port = ServerTest.port;
         conf.pagesPort = ServerTest.port;
         conf.authConfigFile = realmFile.getAbsolutePath();

Modified: jena/trunk/jena-jdbc/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-jdbc/pom.xml?rev=1511864&r1=1511863&r2=1511864&view=diff
==============================================================================
--- jena/trunk/jena-jdbc/pom.xml (original)
+++ jena/trunk/jena-jdbc/pom.xml Thu Aug  8 16:46:08 2013
@@ -7,6 +7,26 @@
 	<packaging>pom</packaging>
 	<name>Jena JDBC</name>
 	<description>This is the parent module for the Jena JDBC modules.  These modules provide JDBC Type 4 drivers for in-memory and TDB datasets as well as remote SPARQL endpoints.</description>
+
+	<parent>
+		<groupId>org.apache.jena</groupId>
+		<artifactId>jena-parent</artifactId>
+		<version>7-SNAPSHOT</version>
+		<relativePath>../jena-parent</relativePath>
+	</parent>
+
+	<!-- Need if the parent is a snapshot -->
+	<repositories>
+		<repository>
+			<id>apache.snapshots</id>
+			<name>Apache Snapshot Repository</name>
+			<url>http://repository.apache.org/snapshots</url>
+			<releases>
+				<enabled>false</enabled>
+			</releases>
+		</repository>
+	</repositories>
+
 	<modules>
 		<module>jena-jdbc-core</module>
 		<module>jena-jdbc-driver-remote</module>