Created
February 11, 2016 18:57
-
-
Save ryan-williams/bf2989d1aa18cb998eaa to your computer and use it in GitHub Desktop.
enable full stack traces in scalatest in maven: <stdout>F</stdout>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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