diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-02-01 23:53:17 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-02-01 23:53:17 +0100 |
commit | 2a1383f2865dff780d435e9d2a897e57879748df (patch) | |
tree | 09716bfe1759082f88dc6df79f01b7794fb6ec3a /build.gradle | |
parent | 1f79d1db101b706649aed93ed36092477db7d357 (diff) |
Implement an alternate JWT security filter.
Change-Id: Ie46b6efc24d045f90f45f7b16f17e4b84ae886c5
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 374b627..3986100 100644 --- a/build.gradle +++ b/build.gradle @@ -39,6 +39,7 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy-jsonb' implementation 'io.quarkus:quarkus-resteasy-qute' implementation 'io.quarkus:quarkus-scheduler' + implementation 'io.quarkus:quarkus-smallrye-jwt' //implementation 'io.quarkus:quarkus-elytron-security' //implementation 'io.quarkus:quarkus-elytron-security-jdbc' @@ -54,6 +55,8 @@ dependencies { //implementation 'org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec' //implementation 'jakarta.persistence:jakarta.persistence-api' + implementation "org.bitbucket.b_c:jose4j" + implementation 'org.mapstruct:mapstruct' compileOnly 'org.mapstruct:mapstruct-processor' @@ -76,6 +79,7 @@ dependencies { compileOnly "com.google.code.findbugs:jsr305:${findbugsJsr305Version}" implementation "jakarta.security.jacc:jakarta.security.jacc-api:${jakartaJaccVersion}" implementation "net.java.dev.jna:jna:${jnaVersion}" + implementation "org.bitbucket.b_c:jose4j:${jose4jVersion}" } } |