We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a3cdc commit ac753f2Copy full SHA for ac753f2
.env.default
@@ -0,0 +1 @@
1
+JWT_SECRET=your-secret-key
build.gradle.kts
@@ -39,6 +39,11 @@ dependencies {
39
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
40
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13")
41
implementation ("io.github.cdimascio:dotenv-java:3.0.0")
42
+
43
+ // JWT
44
+ implementation("io.jsonwebtoken:jjwt-api:0.12.6")
45
+ runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.6")
46
+ runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.6")
47
}
48
49
tasks.withType<Test> {
0 commit comments