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>