Reputation: 33
Which version of sl4j is used in Jetty8. There is no sl4j provided with the Jetty8.1 distribution and several attempts to get a compatible version of sl4j for this has failed. Is there a link from where this compatible sl4j can be downloaded. As of now sl4j in the current setup that I have created sl4j is not used at all. But I want to use this.
Upvotes: 1
Views: 182
Reputation: 9345
The slf4j version is 1.6.1 as you can see in the POM for version 8.1.7. Use maven and you won't have problems with dependencies.
Upvotes: 1
Reputation: 1510
Define in jetty-project pom.xml in version 8.0.0.M3 :
<slf4j-version>1.5.11</slf4j-version>
Upvotes: 1