This project is to demonstrate how we can implement Single Sign-On (SSO) and Single Logout (SLO), by taking advantage of these resources: 1. Azure AD (Active Directory) as IDP 2. Springboot as SP 3. SAML (Security Assertion Markup Language) as SSO & SLO METHOD
From a clean copy of the repo, I enter some dummy values in application.yaml, then run:
mvn clean package
There are numerous test failures with IllegalArgumentException, such as:
Could not resolve placeholder 'service.provider.entity.id' in value "${service.provider.entity.id}"
I tried the following fixes:
copying src/main/resources to src/test/resources
adding the following clause to in pom.xml
but neither approach worked. Can you help?