Direct derby.log to SVN Ignored Directory

Bug #705177 reported by rrmckinley
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Querydsl
Fix Released
Undecided
Unassigned

Bug Description

A Maven test and build creates the following files. They should be generated to a directory that is in svn ignore. Perhaps target? This will keep svn tools from indicating the need to commit or patch for these.

querydsl-hibernate-search/derby.log
querydsl-jpa/derby.log
querydsl-sql/derby.log

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>

Changed in querydsl:
status: New → Fix Committed
Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Released in 2.1.0-beta2

Changed in querydsl:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.