Skip to content

Commit

Permalink
Issue eclipse#103, case 4, remove classpath: psuedo URL usage
Browse files Browse the repository at this point in the history
  • Loading branch information
starksm64 committed Aug 27, 2018
1 parent 1302d7e commit a6e4a5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static WebArchive createLocationDeployment() throws IOException {
// Setup the microprofile-config.properties content
Properties configProps = new Properties();
// Location points to the JWKS bundled in the deployment
configProps.setProperty(Names.VERIFIER_PUBLIC_KEY_LOCATION, "classpath:/signer-key4k.jwk");
configProps.setProperty(Names.VERIFIER_PUBLIC_KEY_LOCATION, "/signer-key4k.jwk");
configProps.setProperty(Names.ISSUER, TCKConstants.TEST_ISSUER);
StringWriter configSW = new StringWriter();
configProps.store(configSW, "PublicKeyAsJWKLocationTest microprofile-config.properties");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static WebArchive createLocationDeployment() throws IOException {
// Setup the microprofile-config.properties content
Properties configProps = new Properties();
// Location points to the JWKS bundled in the deployment
configProps.setProperty(Names.VERIFIER_PUBLIC_KEY_LOCATION, "classpath:/signer-keyset4k.jwk");
configProps.setProperty(Names.VERIFIER_PUBLIC_KEY_LOCATION, "/signer-keyset4k.jwk");
configProps.setProperty(Names.ISSUER, TCKConstants.TEST_ISSUER);
StringWriter configSW = new StringWriter();
configProps.store(configSW, "PublicKeyAsJWKSLocationTest microprofile-config.properties");
Expand Down

0 comments on commit a6e4a5b

Please sign in to comment.