2020-11-25 14:53:51 -05:00
|
|
|
plugins {
|
|
|
|
id "java"
|
2022-03-17 13:44:26 -04:00
|
|
|
// id "nebula.integtest" version "8.2.0"
|
2021-10-04 14:04:13 -04:00
|
|
|
id "org.gretty" version "3.0.6"
|
2020-11-25 14:53:51 -05:00
|
|
|
id "war"
|
|
|
|
}
|
|
|
|
|
2021-10-04 14:06:08 -04:00
|
|
|
//apply from: "gradle/gretty.gradle"
|
2020-11-25 14:53:51 -05:00
|
|
|
|
|
|
|
repositories {
|
2022-01-17 10:44:01 -05:00
|
|
|
mavenCentral()
|
2022-01-14 14:39:45 -05:00
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
2020-11-25 14:53:51 -05:00
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation platform("org.springframework:spring-framework-bom:5.3.0")
|
|
|
|
implementation platform("org.springframework.security:spring-security-bom:5.5.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.springframework:spring-webmvc"
|
|
|
|
implementation "org.apache.httpcomponents:httpclient:4.5.13"
|
|
|
|
|
|
|
|
testImplementation "org.assertj:assertj-core:3.18.0"
|
|
|
|
testImplementation "org.springframework:spring-test"
|
|
|
|
testImplementation "org.springframework.security:spring-security-test"
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api")
|
|
|
|
|
|
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(Test).configureEach {
|
|
|
|
useJUnitPlatform()
|
2021-12-13 11:04:46 -05:00
|
|
|
outputs.upToDateWhen { false }
|
2020-11-25 14:53:51 -05:00
|
|
|
}
|