389 lines
12 KiB
XML
389 lines
12 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>10.1.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>Shibboleth</id>
|
|
<name>Shibboleth</name>
|
|
<url>https://build.shibboleth.net/nexus/content/repositories/releases/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<properties>
|
|
<!-- DEPENDENCY VERSIONS -->
|
|
|
|
<!-- Spring -->
|
|
<spring.version>4.3.30.RELEASE</spring.version>
|
|
|
|
<!-- Spring Security -->
|
|
<spring-security.version>4.2.20.RELEASE</spring-security.version>
|
|
<spring-security-oauth2.version>2.5.2.RELEASE</spring-security-oauth2.version>
|
|
<spring-security-saml2.version>1.0.10.RELEASE</spring-security-saml2.version>
|
|
|
|
<!-- Jackson -->
|
|
<jackson.version>2.13.3</jackson.version>
|
|
<jackson-dataformat-yml.version>${jackson.version}</jackson-dataformat-yml.version>
|
|
|
|
<!-- Database -->
|
|
<postgresql.version>42.4.0</postgresql.version>
|
|
<mysql.version>8.0.30</mysql.version>
|
|
<hsqldb.version>2.6.1</hsqldb.version>
|
|
<mariadb-java-client.version>3.0.6</mariadb-java-client.version>
|
|
<hikari.version>5.0.1</hikari.version>
|
|
<shedlock.version>4.3.1</shedlock.version><!-- CANNOT BE UPGRADED DUE TO SPRING 4 Compatibility -->
|
|
<shedlock-spring.version>${shedlock.version}</shedlock-spring.version>
|
|
<shedlock-provider-jdbc-template.version>${shedlock.version}</shedlock-provider-jdbc-template.version>
|
|
|
|
<!-- Servlet -->
|
|
<glassfish-servlet.version>3.1.1</glassfish-servlet.version>
|
|
<glassfish-jstl.version>1.2.6</glassfish-jstl.version>
|
|
|
|
<!-- Eclipse -->
|
|
<javax-persistence-api.version>2.2</javax-persistence-api.version>
|
|
<eclipse-persistence.version>2.7.10</eclipse-persistence.version>
|
|
<eclipse-persistence-core.version>${eclipse-persistence.version}</eclipse-persistence-core.version>
|
|
<eclipse-persistence-jpa.version>${eclipse-persistence.version}</eclipse-persistence-jpa.version>
|
|
|
|
<!-- LDAP -->
|
|
<apache-ldap-api-all.version>2.1.0</apache-ldap-api-all.version>
|
|
|
|
<!-- Logging -->
|
|
<logback.version>1.2.11</logback.version>
|
|
|
|
<!-- Testing -->
|
|
<junit.version>4.13.2</junit.version>
|
|
<mockito.version>4.6.1</mockito.version>
|
|
|
|
<lombok.version>1.18.24</lombok.version>
|
|
<guava.version>31.1-jre</guava.version>
|
|
<gson.version>2.9.0</gson.version>
|
|
<httpclient.version>4.5.13</httpclient.version>
|
|
<nimbus-jose-jwt.version>9.23</nimbus-jose-jwt.version>
|
|
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
|
|
<xml-bind-api.version>2.3.3</xml-bind-api.version>
|
|
<jaxb-runtime.version>2.3.6</jaxb-runtime.version>
|
|
<aspectjweaver.version>1.9.9.1</aspectjweaver.version>
|
|
|
|
<!-- BUILD -->
|
|
<java.version>11</java.version>
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- Us -->
|
|
<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>
|
|
<dependency>
|
|
<groupId>org.springframework.security.extensions</groupId>
|
|
<artifactId>spring-security-saml2-core</artifactId>
|
|
<version>${spring-security-saml2.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Jackson -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
<version>${jackson-dataformat-yml.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Servlet -->
|
|
<dependency>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>javax.servlet</artifactId>
|
|
<version>${glassfish-servlet.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.web</groupId>
|
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
|
|
<version>${glassfish-jstl.version}</version>
|
|
</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.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgresql.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>${hikari.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
<version>${mariadb-java-client.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.javacrumbs.shedlock</groupId>
|
|
<artifactId>shedlock-spring</artifactId>
|
|
<version>${shedlock-spring.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.javacrumbs.shedlock</groupId>
|
|
<artifactId>shedlock-provider-jdbc-template</artifactId>
|
|
<version>${shedlock-provider-jdbc-template.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Eclipse Persistence -->
|
|
<!-- https://mvnrepository.com/artifact/javax.persistence/javax.persistence-api -->
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
<version>${javax-persistence-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>org.eclipse.persistence.core</artifactId>
|
|
<version>${eclipse-persistence-core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>org.eclipse.persistence.jpa</artifactId>
|
|
<version>${eclipse-persistence-jpa.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>
|
|
|
|
<!-- Logging -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-core</artifactId>
|
|
<version>${logback.version}</version>
|
|
</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.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.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>${xml-bind-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
<version>${jaxb-runtime.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>${aspectjweaver.version}</version>
|
|
</dependency>
|
|
<!-- LDAP -->
|
|
<dependency>
|
|
<groupId>org.apache.directory.api</groupId>
|
|
<artifactId>api-all</artifactId>
|
|
<version>${apache-ldap-api-all.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.3.2</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.10.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</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>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|