plugins { id 'java' id 'war' } group = 'de.srsoftware' version = '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { compileOnly 'javax.servlet:javax.servlet-api:4.0.1' implementation 'ch.qos.logback:logback-core:1.5.6' implementation 'org.slf4j:slf4j-api:2.0.13' testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' } test { useJUnitPlatform() } war { archiveFileName = 'oidc.war' }