buildscript { ext { springBootVersion = '2.5.14' } } plugins { id 'java' } group 'org.example' version '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { implementation 'com.onelogin:java-saml:2.9.0' implementation(platform("org.springframework.boot:spring-boot-dependencies:" + springBootVersion)) implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2' } test { useJUnitPlatform() }