TOMEE-2247 - Fixed test.
Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/70de1502 Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/70de1502 Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/70de1502 Branch: refs/heads/master Commit: 70de1502ab4401d956d0c299a99720f26feedb17 Parents: 01c2fb6 Author: Roberto Cortez <[email protected]> Authored: Tue Sep 25 13:08:32 2018 +0100 Committer: Roberto Cortez <[email protected]> Committed: Fri Dec 7 18:11:18 2018 +0000 ---------------------------------------------------------------------- .../microprofile/tck/jwt/MicroProfileJWTTCKArchiveProcessor.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/70de1502/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/MicroProfileJWTTCKArchiveProcessor.java ---------------------------------------------------------------------- diff --git a/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/MicroProfileJWTTCKArchiveProcessor.java b/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/MicroProfileJWTTCKArchiveProcessor.java index efe9bf0..4d16313 100644 --- a/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/MicroProfileJWTTCKArchiveProcessor.java +++ b/tck/microprofile-tck/jwt/src/test/java/org/apache/tomee/microprofile/tck/jwt/MicroProfileJWTTCKArchiveProcessor.java @@ -24,6 +24,8 @@ import org.eclipse.microprofile.jwt.tck.config.IssValidationTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsBase64JWKTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsFileLocationURLTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKLocationTest; +import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKLocationURLTest; +import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsJWKTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMLocationTest; import org.eclipse.microprofile.jwt.tck.config.PublicKeyAsPEMTest; import org.eclipse.microprofile.jwt.tck.util.TokenUtils; @@ -72,6 +74,7 @@ public class MicroProfileJWTTCKArchiveProcessor implements ApplicationArchivePro PublicKeyAsPEMTest.class, PublicKeyAsPEMLocationTest.class, PublicKeyAsFileLocationURLTest.class, + PublicKeyAsJWKTest.class, PublicKeyAsBase64JWKTest.class, PublicKeyAsJWKLocationTest.class, IssValidationTest.class,
