Преглед на файлове

Use OpenSAML 4 in SAML 2.0 Login Sample

Closes gh-20
Josh Cummings преди 4 години
родител
ревизия
789a203355
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  1. 6 0
      servlet/spring-boot/java/saml2-login/build.gradle

+ 6 - 0
servlet/spring-boot/java/saml2-login/build.gradle

@@ -8,9 +8,15 @@ plugins {
 repositories {
 	jcenter()
 	maven { url "https://repo.spring.io/snapshot" }
+	maven { url "https://build.shibboleth.net/nexus/content/repositories/releases/" }
 }
 
 dependencies {
+	constraints {
+		implementation "org.opensaml:opensaml-core:4.1.1"
+		implementation "org.opensaml:opensaml-saml-api:4.1.1"
+		implementation "org.opensaml:opensaml-saml-impl:4.1.1"
+	}
 	implementation 'org.springframework.boot:spring-boot-starter-security'
 	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
 	implementation 'org.springframework.boot:spring-boot-starter-web'