1
0
Nilton Constantino d48172539a
first commit
2026-04-22 14:55:58 +01:00

17 lines
605 B
Plaintext

plugins {
id("java-library-conventions")
}
dependencies {
api(project(":main-infrastructure"))
api(project(":main-contract-subjects"))
implementation(project(":main-service"))
implementation(Dependencies.jjwtApi)
runtimeOnly(Dependencies.jjwtImpl)
runtimeOnly(Dependencies.jjwtJackson)
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
implementation("com.nimbusds:nimbus-jose-jwt")
}