You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
694 B
33 lines
694 B
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' |
|
implementation 'ch.qos.logback:logback-classic:1.5.6' |
|
implementation project(':de.srsoftware.oidc.api') |
|
implementation('org.antlr:ST4:4.3.3') |
|
} |
|
|
|
test { |
|
useJUnitPlatform() |
|
} |
|
|
|
war { |
|
archiveFileName = 'oidc.war' |
|
webAppDirName = 'src/main/resources' |
|
} |
|
|
|
|
|
|