plugins { id "java" id "war" } repositories { jcenter() maven { url "https://repo.spring.io/snapshot" } } dependencies { implementation platform("org.springframework.security:spring-security-bom:5.7.0-SNAPSHOT") implementation platform("org.springframework:spring-framework-bom:5.3.9") implementation platform("org.junit:junit-bom:5.7.0") implementation 'org.springframework:spring-beans' implementation 'org.springframework:spring-jdbc' implementation 'org.springframework:spring-tx' implementation "org.springframework.security:spring-security-acl" implementation "org.springframework.security:spring-security-core" implementation "org.springframework.security:spring-security-config" implementation "org.thymeleaf:thymeleaf-spring5:3.0.11.RELEASE" implementation 'javax.servlet:jstl:1.2' implementation 'org.slf4j:slf4j-api:1.7.30' implementation 'org.slf4j:slf4j-simple:1.7.30' runtimeOnly 'net.sf.ehcache:ehcache:2.10.5' runtimeOnly 'org.hsqldb:hsqldb:2.5.0' runtimeOnly 'org.springframework:spring-context-support' 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") } tasks.withType(Test).configureEach { useJUnitPlatform() outputs.upToDateWhen { false } }