Files
Josh Cummings d1630a6032 Restore Format and CheckFormat for saml2 Projects
- Update the way that the saml2 projects were dependent
on identity-provider resource files.
- Use TestContainers to simplify runtime dependencies
- Update compose.yml to use Docker-standard interpolation

Closes gh-335
2024-11-05 12:35:07 -07:00

25 lines
560 B
Groovy

plugins {
alias(libs.plugins.org.springframework.boot)
alias(libs.plugins.io.spring.dependency.management)
id "nebula.integtest" version "8.2.0"
id 'java'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-test'
implementation "org.testcontainers:testcontainers:1.20.3"
implementation "org.testcontainers:junit-jupiter:1.20.3"
}
tasks.withType(Test).configureEach {
useJUnitPlatform()
}