You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
586 B
30 lines
586 B
4 months ago
|
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()
|
||
|
}
|