From a9201750dea56f0e14ea41dd28ad8ede7082151e Mon Sep 17 00:00:00 2001 From: Jens Agren Date: Thu, 15 Aug 2019 12:46:35 +0200 Subject: [PATCH] Update build.gradle Changed property name sprintgSecurityTest to springSecurityTest due to incorrect spelling. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index ebc92ab..4b32822 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ version '1.0-SNAPSHOT' ext { springBootVersion = '2.0.5.RELEASE' jadeBootVersion = "2.0.4.RELEASE" - sprintgSecurityTest = '5.1.0.RELEASE' + springSecurityTest = '5.1.0.RELEASE' testNgVersion = '6.10' samlSpringSecurityVersion = '2.0.0.M17' } @@ -33,7 +33,7 @@ dependencies { compile ("com.domingosuarez.boot:jade4j-spring-boot-starter:${jadeBootVersion}") compile ("org.springframework.security.extensions:spring-security-saml2-core:${samlSpringSecurityVersion}") testCompile ("org.springframework.boot:spring-boot-starter-test:${springBootVersion}") - testCompile ("org.springframework.security:spring-security-test:${sprintgSecurityTest}") + testCompile ("org.springframework.security:spring-security-test:${springSecurityTest}") testCompile ("org.testng:testng:${testNgVersion}") }