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 2012/10/08 19:51:32 UTC

svn commit: r1395693 - in /jena/trunk/jena-sdb: DEPENDENCIES assembly.xml pom.xml

Author: andy
Date: Mon Oct  8 17:51:31 2012
New Revision: 1395693

URL: http://svn.apache.org/viewvc?rev=1395693&view=rev
Log: (empty)

Modified:
    jena/trunk/jena-sdb/DEPENDENCIES
    jena/trunk/jena-sdb/assembly.xml
    jena/trunk/jena-sdb/pom.xml

Modified: jena/trunk/jena-sdb/DEPENDENCIES
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/DEPENDENCIES?rev=1395693&r1=1395692&r2=1395693&view=diff
==============================================================================
--- jena/trunk/jena-sdb/DEPENDENCIES (original)
+++ jena/trunk/jena-sdb/DEPENDENCIES Mon Oct  8 17:51:31 2012
@@ -7,6 +7,7 @@ Apache Projects:   Apache Software Licen
   Apache log4j
   Apache HttpComponents (HTTP Client)
   Apache Commons Codec
+  
 
 SLF4J : http://www.slf4j.org/
   Copyright (c) 2004-2008 QOS.ch
@@ -14,3 +15,7 @@ SLF4J : http://www.slf4j.org/
 
 JUnit : http://junit.org/
   Common Public License - v 1.0
+
+In addition, JDBC drivers and database engines are needed.
+
+Apache Derbey and HSQLDB are used for testing.

Modified: jena/trunk/jena-sdb/assembly.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/assembly.xml?rev=1395693&r1=1395692&r2=1395693&view=diff
==============================================================================
--- jena/trunk/jena-sdb/assembly.xml (original)
+++ jena/trunk/jena-sdb/assembly.xml Mon Oct  8 17:51:31 2012
@@ -18,10 +18,9 @@
 
 <assembly>
   <id>distribution</id>
-  <baseDirectory>apache-${project.artifactId}-${project.version}</baseDirectory>
   <formats>
-    <!--
     <format>tar.gz</format>
+    <!--
     <format>tar.bz2</format>
     -->
     <format>zip</format>
@@ -32,6 +31,10 @@
       <unpack>false</unpack>
       <scope>test</scope>
       <outputDirectory>lib</outputDirectory>
+      <excludes>
+	<exclude>org.apache.derby:derby:</exclude>
+	<exclude>org.hsqldb:hsqldb:*</exclude>
+      </excludes>
     </dependencySet>
   </dependencySets>
 
@@ -69,17 +72,6 @@
       <directory>Store</directory>
     </fileSet>
 
-    <!-- For testing the deployment -->
-    <fileSet>
-      <directory>testing</directory>
-    </fileSet>
-
-    <fileSet>
-      <includes>
-	<include>test.sh</include>
-      </includes>
-    </fileSet>
-
     <fileSet>
       <directory>${project.build.directory}/apidocs</directory>
       <outputDirectory>javadoc</outputDirectory>

Modified: jena/trunk/jena-sdb/pom.xml
URL: http://svn.apache.org/viewvc/jena/trunk/jena-sdb/pom.xml?rev=1395693&r1=1395692&r2=1395693&view=diff
==============================================================================
--- jena/trunk/jena-sdb/pom.xml (original)
+++ jena/trunk/jena-sdb/pom.xml Mon Oct  8 17:51:31 2012
@@ -83,7 +83,12 @@
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>${ver.junit}</version>
-      <!-- <scope>test</scope> see: JENA-141 -->
+      <exclusions>
+	<exclusion>
+	  <groupId>org.hamcrest</groupId>
+	  <artifactId>hamcrest-core</artifactId>
+      	</exclusion>
+      </exclusions>
     </dependency>
 
     <dependency>