We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 518381b commit f95333dCopy full SHA for f95333d
RELEASE_NOTES.md
@@ -0,0 +1,22 @@
1
+# Eclipse Tycho: Release notes
2
+
3
+This page describes the noteworthy improvements provided by each release of Eclipse Tycho.
4
5
+### Next release...
6
7
+## 2.4.0
8
9
+### [Enhanced support for debug output in surefire-tests](https://github.com/eclipse/tycho/issues/52)
10
+tycho-surefire now support to set .options files for debugging through the new debugOptions parameter, example:
11
12
+```
13
+<plugin>
14
+ <groupId>org.eclipse.tycho</groupId>
15
+ <artifactId>tycho-surefire-plugin</artifactId>
16
+ <version>${tycho-version}</version>
17
+ <configuration>
18
+ <showEclipseLog>true</showEclipseLog>
19
+ <debugOptions>${project.basedir}/../../debug.options</debugOptions>
20
+</configuration>
21
+</plugin>
22
+ ```
0 commit comments