Upgrade h2spec-maven-plugin to 1.0.6 (#6616)

Signed-off-by: Olivier Lamy <oliver.lamy@gmail.com>
This commit is contained in:
Olivier Lamy 2021-08-19 09:06:52 +10:00 committed by GitHub
parent a7a2ae6f84
commit 1acf54ba59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -981,7 +981,7 @@
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>h2spec-maven-plugin</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</plugin>
</plugins>
</pluginManagement>

View File

@ -843,7 +843,7 @@ public class DistributionTests extends AbstractJettyHomeTest
// Protocol "h2" must not be enabled because the
// http2 Jetty module was not explicitly enabled.
assertFalse(run3.getLogs().stream()
.anyMatch(log -> log.contains("h2")));
.anyMatch(log -> log.contains("h2")), "Full logs: " + String.join("", run3.getLogs()));
}
}
}