You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by ve...@apache.org on 2012/08/11 09:40:17 UTC

svn commit: r1371875 - /abdera/java/trunk/adapters/jcr/pom.xml

Author: veithen
Date: Sat Aug 11 07:40:16 2012
New Revision: 1371875

URL: http://svn.apache.org/viewvc?rev=1371875&view=rev
Log:
Prevent the build from creating a derby.log file in the source tree (instead, create it in the target directory).

Modified:
    abdera/java/trunk/adapters/jcr/pom.xml

Modified: abdera/java/trunk/adapters/jcr/pom.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/jcr/pom.xml?rev=1371875&r1=1371874&r2=1371875&view=diff
==============================================================================
--- abdera/java/trunk/adapters/jcr/pom.xml (original)
+++ abdera/java/trunk/adapters/jcr/pom.xml Sat Aug 11 07:40:16 2012
@@ -80,4 +80,20 @@
     </dependency>
 
   </dependencies>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemProperties>
+            <property>
+              <name>derby.stream.error.file</name>
+              <value>${project.build.directory}/derby.log</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>