Skip to content

Commit

Permalink
Build also with Java 21 on CI.
Browse files Browse the repository at this point in the history
Added missing dependency in WebAppTest.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Oct 17, 2023
1 parent 60dde4c commit d53301a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -14,7 +14,7 @@ pipeline {
axes {
axis {
name 'JDK'
values 'jdk17'
values 'jdk17', 'jdk21'
}
}
stages {
Expand Down
Expand Up @@ -93,6 +93,7 @@ private void start(Path webXML) throws Exception {
copyWebAppDependency(org.eclipse.jetty.logging.JettyLogger.class, webINF);
copyWebAppDependency(org.cometd.annotation.Service.class, webINF);
copyWebAppDependency(org.cometd.annotation.server.RemoteCall.class, webINF);
copyWebAppDependency(org.cometd.annotation.server.jakarta.AnnotationCometDServlet.class, webINF);
copyWebAppDependency(org.cometd.bayeux.Message.class, webINF);
copyWebAppDependency(org.cometd.bayeux.client.ClientSession.class, webINF);
copyWebAppDependency(org.cometd.bayeux.server.BayeuxServer.class, webINF);
Expand Down

0 comments on commit d53301a

Please sign in to comment.