We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b86b8d0 commit 3a02731Copy full SHA for 3a02731
documentation/documentation.gradle
@@ -1,3 +1,5 @@
1
+import org.apache.tools.ant.taskdefs.condition.Os
2
+
3
buildscript {
4
dependencies {
5
// upgrade to latest jruby version due to a bugfix needed for Windows 10.
@@ -102,6 +104,12 @@ asciidoctor {
102
104
103
105
backends 'html5'
106
107
+ // The PDF backend currently does not work on Linux
108
+ // see https://github.com/junit-team/junit5/issues/1099
109
+ if (Os.isFamily(Os.FAMILY_WINDOWS) || Os.isFamily(Os.FAMILY_MAC)) {
110
+ backends 'pdf'
111
+ }
112
113
attributes 'jupiter-version': version,
114
'platform-version': platformVersion,
115
'vintage-version': vintageVersion,
0 commit comments