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 0e29bab commit e5c694c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/mp-rest-jwt-principal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@
<version>9.39.1</version>
<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>
Expand Down
7 changes: 7 additions & 0 deletions examples/mp-rest-jwt-public-key/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>1.3.1</version>
<scope>test</scope>
</dependency>

<!--
The <scope>test</scope> guarantees that non of your runtime
code is dependent on any OpenEJB classes.
Expand Down

0 comments on commit e5c694c

Please sign in to comment.