Skip to content

Commit

Permalink
Fix compile issue in example resulting from undeclared transient use …
Browse files Browse the repository at this point in the history
…of a json lib
  • Loading branch information
rzo1 committed May 21, 2024
1 parent 1e80fc9 commit 0e29bab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions examples/mp-rest-jwt-jwk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>1.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ public static void generateKeyPair(String keyAlgorithm, int keySize) throws NoSu
.keyID(UUID.randomUUID().toString())
.build();

System.out.println(jwk.toJSONObject().toJSONString());
System.out.println(jwk.toJSONObject());
}
}

0 comments on commit 0e29bab

Please sign in to comment.