Comment 1 for bug 705177

Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Fixed this by adding the following Surefire configuration to hibernate-search, jpa and sql :

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <systemProperties>
            <property>
                <name>derby.stream.error.file</name>
                <value>target/derby.log</value>
            </property>
          </systemProperties>
        </configuration>
      </plugin>