@@ -94,6 +94,7 @@ private static List<String> compile(Path temp, Writer out, Writer err) throws Ex
94
94
ThirdPartyJars .copy (lib , "org.opentest4j.reporting" , "open-test-reporting-tooling-spi" );
95
95
ThirdPartyJars .copy (lib , "com.google.jimfs" , "jimfs" );
96
96
ThirdPartyJars .copy (lib , "com.google.guava" , "guava" );
97
+ ThirdPartyJars .copy (lib , "com.google.guava" , "failureaccess" );
97
98
loadAllJUnitModules (lib );
98
99
args .add ("--module-path" );
99
100
args .add (lib .toString ());
@@ -136,6 +137,7 @@ private static void junit(Path temp, OutputFiles outputFiles) throws Exception {
136
137
)) //
137
138
.addArguments ("--add-modules" , "documentation" ) //
138
139
.addArguments ("--patch-module" , "documentation=" + projectDir .resolve ("src/test/resources" )) //
140
+ .addArguments ("--add-modules" , "com.google.common" ) //
139
141
.addArguments ("--module" , "org.junit.platform.console" ) //
140
142
.addArguments ("execute" ) //
141
143
.addArguments ("--scan-modules" ) //
@@ -170,6 +172,7 @@ void runTestsFromUserGuideWithinModularBoundaries(@TempDir Path temp,
170
172
"lib/apiguardian-api-.+\\ .jar" , //
171
173
"lib/assertj-core-.+\\ .jar" , //
172
174
"lib/byte-buddy-.+" , //
175
+ "lib/failureaccess-.+\\ .jar" , //
173
176
"lib/guava-.+\\ .jar" , //
174
177
"lib/hamcrest-.+\\ .jar" , //
175
178
"lib/jimfs-.+\\ .jar" , //
0 commit comments