File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ include(
2525 " key-pair-loader" ,
2626 " map-util-unsafe" ,
2727 " num4j" ,
28+ " simple-jwt" ,
2829 " simple-jwt-facade" ,
2930 " simple-jwt-authzero" ,
3031 " simple-jwt-spring-boot-starter" ,
Original file line number Diff line number Diff line change 1+ plugins {
2+ id(" java" )
3+ }
4+
5+ val artefactVersion: String by project
6+
7+ group = " com.onixbyte"
8+ version = artefactVersion
9+
10+ repositories {
11+ mavenCentral()
12+ }
13+
14+ dependencies {
15+ val jacksonVersion: String by project
16+ implementation(project(" :devkit-core" ))
17+ implementation(project(" :devkit-utils" ))
18+ implementation(" com.fasterxml.jackson.core:jackson-core:$jacksonVersion " )
19+ implementation(" com.fasterxml.jackson.core:jackson-databind:$jacksonVersion " )
20+ testImplementation(platform(" org.junit:junit-bom:5.10.0" ))
21+ testImplementation(" org.junit.jupiter:junit-jupiter" )
22+ }
23+
24+ tasks.test {
25+ useJUnitPlatform()
26+ }
You can’t perform that action at this time.
0 commit comments