Skip to content

Instantly share code, notes, and snippets.

@ryan-williams
Created February 11, 2016 18:57
Show Gist options
  • Select an option

  • Save ryan-williams/bf2989d1aa18cb998eaa to your computer and use it in GitHub Desktop.

Select an option

Save ryan-williams/bf2989d1aa18cb998eaa to your computer and use it in GitHub Desktop.
enable full stack traces in scalatest in maven: <stdout>F</stdout>
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>ADAMTestSuite.txt</filereports>
<!--
As explained here: http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info
The second option allows us better debugging for serialization-based errors.
-->
<argLine>-Xmx1024m -Dsun.io.serialization.extendedDebugInfo=true</argLine>
<stdout>F</stdout>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment