ToastShaman / dropwizard-auth-jwt

A Dropwizard authentication filter using JSON Web Token (JWT)
Apache License 2.0
116 stars 50 forks source link

Compatibility to Dropwizard 8.x #8

Closed McPringle closed 9 years ago

McPringle commented 9 years ago

Dropwizard 8.x uses Apache Commons Lang 3 which causes the following exception:

java.lang.NoClassDefFoundError: org/apache/commons/lang/StringUtils
    at com.github.toastshaman.dropwizard.auth.jwt.hmac.KeyAware.<init>(KeyAware.java:27)

The class StringUtils has a new package: org.apache.commons.lang3.StringUtils

McPringle commented 9 years ago

Sorry, my fault, was already fixed with #6!