419 lines
14 KiB
XML
419 lines
14 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2018 The MIT Internet Trust Consortium
|
|
|
|
Portions copyright 2011-2013 The MITRE Corporation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>cz.muni.ics</groupId>
|
|
<artifactId>perun-oidc-parent</artifactId>
|
|
<version>3.4.0</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>perun-oidc-server</module>
|
|
<module>perun-oidc-server-webapp</module>
|
|
</modules>
|
|
|
|
<name>CESNET OpenID-Connect-Java-Spring-Server</name>
|
|
<description>OpenID Connect Provider server based on Java and Spring. It comes out of the MITREid Connect implementation.</description>
|
|
<url>https://github.com/CESNET/OpenID-Connect-Java-Spring-Server.git</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Dominik František Bučík</name>
|
|
<email>bucik@ics.muni.cz</email>
|
|
<organization>ICS MUNI</organization>
|
|
<organizationUrl>https://ics.muni.cz/</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/CESNET/OpenID-Connect-Java-Spring-Server.git</connection>
|
|
<developerConnection>scm:git:ssh://github.com:CESNET/OpenID-Connect-Java-Spring-Server.git</developerConnection>
|
|
<url>https://github.com/CESNET/OpenID-Connect-Java-Spring-Server.git/tree/master</url>
|
|
</scm>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>Shibboleth</id>
|
|
<name>Shibboleth</name>
|
|
<url>https://build.shibboleth.net/nexus/content/repositories/releases/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<properties>
|
|
<java-version>8</java-version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<!-- DEPENDENCIES -->
|
|
<spring.version>4.3.30.RELEASE</spring.version>
|
|
<spring-test.version>4.3.30.RELEASE</spring-test.version>
|
|
<spring-security.version>4.2.20.RELEASE</spring-security.version>
|
|
<spring-security-oauth2.version>2.5.1.RELEASE</spring-security-oauth2.version>
|
|
<jackson.version>2.11.4</jackson.version>
|
|
<jsp-api.version>2.2</jsp-api.version>
|
|
<mysql.version>8.0.23</mysql.version>
|
|
<hsqldb.version>2.4.0</hsqldb.version>
|
|
<eclipse-persistence.version>2.7.7</eclipse-persistence.version>
|
|
<javax-persistence.version>2.2.1</javax-persistence.version>
|
|
<hikari.version>3.4.5</hikari.version>
|
|
<org.slf4j-version>1.7.30</org.slf4j-version>
|
|
<log4j-core.version>2.13.3</log4j-core.version>
|
|
<junit.version>4.13.1</junit.version>
|
|
<easymock.version>4.2</easymock.version>
|
|
<mockito.version>3.2.4</mockito.version>
|
|
<guava.version>30.0-jre</guava.version>
|
|
<gson.version>2.8.6</gson.version>
|
|
<httpclient.version>4.5.13</httpclient.version>
|
|
<nimbus-jose-jwt.version>8.17.1</nimbus-jose-jwt.version>
|
|
<bcprov-jdk15on.version>1.67</bcprov-jdk15on.version>
|
|
<commons-io.version>2.7</commons-io.version>
|
|
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
|
|
<lombok.version>1.18.18</lombok.version>
|
|
<servlet-api.version>2.5</servlet-api.version>
|
|
<jstl.version>1.2</jstl.version>
|
|
<apache-commons.version>3.9</apache-commons.version>
|
|
<jackson-dataformat-yml.verson>2.11.4</jackson-dataformat-yml.verson>
|
|
<mariadb-java-client.version>2.7.0</mariadb-java-client.version>
|
|
<apache-directory-api.version>2.0.1</apache-directory-api.version>
|
|
<janino.version>3.0.12</janino.version>
|
|
<logback.verison>1.2.3</logback.verison>
|
|
<jul-to-slf4j.version>1.7.30</jul-to-slf4j.version>
|
|
<shedlock.version>4.3.1</shedlock.version>
|
|
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
|
|
<jakarta-xml-bind-api.version>2.3.3</jakarta-xml-bind-api.version>
|
|
<jaxb-runtime.version>2.3.3</jaxb-runtime.version>
|
|
<jakarta-servlet-api.version>4.0.4</jakarta-servlet-api.version>
|
|
<aspectjweaver.version>1.9.6</aspectjweaver.version>
|
|
<spring-aop.version>4.3.30.RELEASE</spring-aop.version>
|
|
<spring-context.version>4.3.30.RELEASE</spring-context.version>
|
|
<spring-security-saml2.version>1.0.10.RELEASE</spring-security-saml2.version>
|
|
<!-- BUILD -->
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java-version>8</java-version>
|
|
<maven.compiler.source>${java-version}</maven.compiler.source>
|
|
<maven.compiler.target>${java-version}</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cz.muni.ics</groupId>
|
|
<artifactId>perun-oidc-server</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.muni.ics</groupId>
|
|
<artifactId>perun-oidc-server-webapp</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- Spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-framework-bom</artifactId>
|
|
<version>${spring.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<!-- Spring Security -->
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-bom</artifactId>
|
|
<version>${spring-security.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
<artifactId>spring-security-oauth2</artifactId>
|
|
<version>${spring-security-oauth2.version}</version>
|
|
</dependency>
|
|
<!-- Jackson -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>${jackson.version}</version>
|
|
</dependency>
|
|
<!-- Servlet -->
|
|
<dependency>
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
<artifactId>jstl-api</artifactId>
|
|
<version>${jstl.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
<artifactId>jsp-api</artifactId>
|
|
<version>${jsp-api.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Database -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<version>${hsqldb.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>org.eclipse.persistence.jpa</artifactId>
|
|
<version>${eclipse-persistence.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>${hikari.version}</version>
|
|
</dependency>
|
|
<!-- Test -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>${mockito.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- Other libraries -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>${guava.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>${gson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>${httpclient.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.nimbusds</groupId>
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
<version>${nimbus-jose-jwt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
<version>${bcprov-jdk15on.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>org.eclipse.persistence.core</artifactId>
|
|
<version>${eclipse-persistence.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${servlet-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
<version>${jstl.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${apache-commons.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
<version>${jackson-dataformat-yml.verson}</version>
|
|
</dependency>
|
|
<!-- MySQL JDBC driver -->
|
|
<dependency>
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
<version>${mariadb-java-client.version}</version>
|
|
</dependency>
|
|
<!-- LDAP -->
|
|
<dependency>
|
|
<groupId>org.apache.directory.api</groupId>
|
|
<artifactId>api-all</artifactId>
|
|
<version>${apache-directory-api.version}</version>
|
|
</dependency>
|
|
<!-- logging -->
|
|
<dependency>
|
|
<groupId>org.codehaus.janino</groupId>
|
|
<artifactId>janino</artifactId>
|
|
<version>${janino.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.verison}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
<version>${jul-to-slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.javacrumbs.shedlock</groupId>
|
|
<artifactId>shedlock-spring</artifactId>
|
|
<version>${shedlock.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.javacrumbs.shedlock</groupId>
|
|
<artifactId>shedlock-provider-jdbc-template</artifactId>
|
|
<version>${shedlock.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
<version>${javax-annotation-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
<version>${jakarta-xml-bind-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
<version>${jaxb-runtime.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.servlet</groupId>
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
<version>${jakarta-servlet-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-aop</artifactId>
|
|
<version>${spring-aop.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>${aspectjweaver.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${spring-context.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security.extensions</groupId>
|
|
<artifactId>spring-security-saml2-core</artifactId>
|
|
<version>${spring-security-saml2.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.3.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.appfuse.plugins</groupId>
|
|
<artifactId>warpath-maven-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java-version}</source>
|
|
<target>${java-version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|