42 lines
1.2 KiB
Groovy
42 lines
1.2 KiB
Groovy
plugins {
|
|
id "java"
|
|
id "nebula.integtest" version "8.2.0"
|
|
id "org.gretty" version "4.0.0"
|
|
id "war"
|
|
}
|
|
|
|
apply from: "gradle/gretty.gradle"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation platform("org.springframework.security:spring-security-bom:6.0.0-SNAPSHOT")
|
|
implementation platform("org.junit:junit-bom:5.7.0")
|
|
|
|
implementation "org.springframework.security:spring-security-config"
|
|
implementation "org.springframework.security:spring-security-web"
|
|
implementation 'org.slf4j:slf4j-api:1.7.30'
|
|
implementation 'org.slf4j:slf4j-simple:1.7.30'
|
|
|
|
providedCompile "jakarta.servlet:jakarta.servlet-api:5.0.0"
|
|
providedCompile "org.glassfish.web:jakarta.servlet.jsp.jstl:2.0.0"
|
|
|
|
testImplementation "org.springframework:spring-test"
|
|
testImplementation "org.springframework.security:spring-security-test"
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api")
|
|
testImplementation "org.assertj:assertj-core:3.18.0"
|
|
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
|
|
integTestImplementation "org.seleniumhq.selenium:htmlunit-driver:3.64.0"
|
|
}
|
|
|
|
tasks.withType(Test).configureEach {
|
|
useJUnitPlatform()
|
|
outputs.upToDateWhen { false }
|
|
}
|