2020-12-07 14:28:19 -05:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'io.spring.gradle:propdeps-plugin:0.0.10.RELEASE'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'io.spring.convention.repository'
|
|
|
|
id 'io.spring.convention.springdependencymangement'
|
|
|
|
id 'io.spring.convention.dependency-set'
|
|
|
|
id 'io.spring.convention.checkstyle'
|
|
|
|
id 'io.spring.convention.tests-configuration'
|
|
|
|
id 'io.spring.convention.integration-test'
|
|
|
|
id 'propdeps'
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
classesOnlyElements {
|
|
|
|
canBeConsumed = true
|
|
|
|
canBeResolved = false
|
|
|
|
attributes {
|
|
|
|
attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 11)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
classesOnlyElements(compileJava.destinationDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = '11'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven { url "https://build.shibboleth.net/nexus/content/repositories/releases/" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
constraints {
|
2021-04-04 13:50:07 -04:00
|
|
|
management("org.opensaml:opensaml-core:4.1.0")
|
|
|
|
management("org.opensaml:opensaml-saml-api:4.1.0")
|
|
|
|
management("org.opensaml:opensaml-saml-impl:4.1.0")
|
2020-12-07 14:28:19 -05:00
|
|
|
}
|
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
api project(':saml2-service-provider-core')
|
2020-12-07 14:28:19 -05:00
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
api("org.opensaml:opensaml-core")
|
|
|
|
api("org.opensaml:opensaml-saml-api")
|
|
|
|
api("org.opensaml:opensaml-saml-impl")
|
2020-12-07 14:28:19 -05:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
testImplementation project(path : ':saml2-service-provider-core', configuration : 'tests')
|
2020-12-07 14:28:19 -05:00
|
|
|
}
|