Skip to content

Commit

Permalink
museumsvictoria#297: JWT convenience dependencies (is discussion muse…
Browse files Browse the repository at this point in the history
  • Loading branch information
justparking authored Aug 25, 2023
1 parent 324496a commit 1aa1551
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nodel-jyhost/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,9 @@ dependencies {
compile('org.snmp4j:snmp4j:2.5.8') {
exclude group:'log4j', module:'log4j' // (brings one extra dependency: log4j; can explicity exclude it because it's optional at runtime)
}

// convenience dependency: JWTs (JSON Web Tokens), see https://github.com/museumsvictoria/nodel/discussions/297
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-orgjson:0.11.5'
}
Original file line number Diff line number Diff line change
Expand Up @@ -346,3 +346,10 @@ def at_cleanup(f):
# Returns false if there is at least one item within 'o', true otherwise
def is_empty(obj):
return obj == None or len(obj) == 0



# CONVENIENCE DEPENDENCIES

# JWTs (JSON Web Tokens)
# see https://github.com/museumsvictoria/nodel/discussions/297

0 comments on commit 1aa1551

Please sign in to comment.