Reputation: 5843
Is there a compatibility table between cometd jar and jetty jar?
<version>${jetty-version}</version>
, but unable to decipher version from this.Upvotes: 1
Views: 249
Reputation: 18552
CometD 5.0.0 is out, so you want to use that instead of CometD 3.1.x. Follow the migration guide.
Using CometD 5 will also simplify the dependency with the Jetty jars, since it supports only the Jetty 9.4.x series.
CometD 5.0.0 has been released with a dependency to Jetty 9.4.28, see here.
It is possible that after a month Jetty releases 9.4.29. It would be totally fine to not upgrade Jetty and stay with CometD 5.0.0 and Jetty 9.4.28, and wait for the next CometD release. However, it would be also correct to update your application, keeping CometD 5.0.0 and updating Jetty to 9.4.29.
After a while CometD 5.0.1 is released, for example based on Jetty 9.4.31, and now you update both CometD and Jetty.
The current CometD dependency on Jetty is documented here.
The CometD/Java/Jetty table is documented here.
Upvotes: 3