Skip to content

Commit

Permalink
Setup for 1.1
Browse files Browse the repository at this point in the history
- Update for Shibboleth IdP 4.2 compatibility
  • Loading branch information
sromunen committed Jan 18, 2023
1 parent e72f807 commit 2e71249
Show file tree
Hide file tree
Showing 8 changed files with 547 additions and 484 deletions.
190 changes: 100 additions & 90 deletions idp-authn-api-wilma/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,93 +21,103 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>idp-authn-wilma</artifactId>
<groupId>fi.mpass</groupId>
<version>1.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>idp-authn-api-wilma</artifactId>
<packaging>jar</packaging>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<automatic.module.name>fi.mpass.authn.wilma.api</automatic.module.name>
</properties>

<dependencies>
<!-- Compile Dependencies -->
<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-authn-api</artifactId>
</dependency>
<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-profile-api</artifactId>
</dependency>

<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-core</artifactId>
</dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-profile-api</artifactId>
</dependency>

<!-- Provided Dependencies -->

<!-- Runtime Dependencies -->

<!-- Test Dependencies -->
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-profile-api</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>

<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-security-impl</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-profile-api</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>

<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-authn-api</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>

</project>
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>idp-authn-wilma</artifactId>
<groupId>fi.mpass</groupId>
<version>1.1</version>
<relativePath>..</relativePath>
</parent>
<artifactId>idp-authn-api-wilma</artifactId>
<packaging>jar</packaging>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<automatic.module.name>fi.mpass.authn.wilma.api</automatic.module.name>
</properties>

<dependencies>
<!-- Compile Dependencies -->
<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-authn-api</artifactId>
</dependency>
<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-profile-api</artifactId>
</dependency>

<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-core</artifactId>
<version>${opensaml.version}</version>
</dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-profile-api</artifactId>
<version>${opensaml.version}</version>
</dependency>

<!-- Provided Dependencies -->

<!-- Runtime Dependencies -->

<!-- Test Dependencies -->
<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-profile-api</artifactId>
<version>${opensaml.version}</version>
<scope>test</scope>
<type>test-jar</type>
</dependency>

<dependency>
<groupId>${opensaml.groupId}</groupId>
<artifactId>opensaml-security-impl</artifactId>
<version>${opensaml.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-profile-api</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>

<dependency>
<groupId>net.shibboleth.idp</groupId>
<artifactId>idp-authn-api</artifactId>
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
<scope>test</scope>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>

</project>
Loading

0 comments on commit 2e71249

Please sign in to comment.