327 lines
11 KiB
XML
327 lines
11 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>org.mitre</groupId>
|
|
<artifactId>openid-connect-parent</artifactId>
|
|
<version>1.3.4-SNAPSHOT</version>
|
|
<name>MITREid Connect</name>
|
|
<packaging>pom</packaging>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
<modules>
|
|
<module>openid-connect-server</module>
|
|
<module>openid-connect-server-webapp</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git</connection>
|
|
<developerConnection>scm:git:git@github.com:mitreid-connect/OpenID-Connect-Java-Spring-Server.git</developerConnection>
|
|
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>jricher</id>
|
|
<name>Justin Richer</name>
|
|
<email>jricher@mit.edu</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<archive>https://mailman.mit.edu/mailman/listinfo/mitreid-connect</archive>
|
|
<name>MITREid Connect Mailing List</name>
|
|
<post>mitreid-connect@mit.edu</post>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<description>A reference implementation of OpenID Connect (http://openid.net/connect/), OAuth 2.0, and UMA built on top of Java, Spring, and Spring Security. The project contains a fully functioning server, client, and utility library.</description>
|
|
<url>https://github.com/mitreid-connect</url>
|
|
<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>
|
|
|
|
<issueManagement>
|
|
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues</url>
|
|
<system>GitHub Issues</system>
|
|
</issueManagement>
|
|
<ciManagement>
|
|
<system>Travis CI</system>
|
|
<url>https://travis-ci.org/mitreid-connect/OpenID-Connect-Java-Spring-Server</url>
|
|
</ciManagement>
|
|
|
|
<properties>
|
|
<java-version>8</java-version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<spring.version>4.3.27.RELEASE</spring.version>
|
|
<spring-test.version>4.3.27.RELEASE</spring-test.version>
|
|
<spring-security.version>4.2.8.RELEASE</spring-security.version>
|
|
<spring-security-oauth2.version>2.4.1.RELEASE</spring-security-oauth2.version>
|
|
<jackson.version>2.11.0</jackson.version>
|
|
<jstl.version>1.2</jstl.version>
|
|
<servlet-api.version>2.5</servlet-api.version>
|
|
<jsp-api.version>2.2</jsp-api.version>
|
|
<mysql.version>8.0.20</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>
|
|
<logback.version>1.2.3</logback.version>
|
|
<org.slf4j-version>1.7.30</org.slf4j-version>
|
|
<log4j-core.version>2.13.3</log4j-core.version>
|
|
<junit.version>4.13</junit.version>
|
|
<easymock.version>4.2</easymock.version>
|
|
<mockito.version>3.2.4</mockito.version>
|
|
<guava.version>29.0-jre</guava.version>
|
|
<gson.version>2.8.6</gson.version>
|
|
<httpclient.version>4.5.12</httpclient.version>
|
|
<nimbus-jose-jwt.version>8.17.1</nimbus-jose-jwt.version>
|
|
<bcprov-jdk15on.version>1.65</bcprov-jdk15on.version>
|
|
<commons-io.version>2.7</commons-io.version>
|
|
<spring-boot-starter-web.version>2.4.2</spring-boot-starter-web.version>
|
|
<spring-boot-starter-security.version>2.4.2</spring-boot-starter-security.version>
|
|
<spring-security-saml2-core.version>1.0.10.RELEASE</spring-security-saml2-core.version>
|
|
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
<version>${javax-annotation-api.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</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring-test.version}</version>
|
|
<scope>test</scope>
|
|
</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</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>${servlet-api.version}</version>
|
|
<scope>compile</scope>
|
|
</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>
|
|
<!-- Logging -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<version>${logback.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>
|
|
<!-- MITREid Connect components -->
|
|
<dependency>
|
|
<groupId>org.mitre</groupId>
|
|
<artifactId>openid-connect-server</artifactId>
|
|
<version>${project.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.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.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>${spring-boot-starter-web.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
<version>${spring-boot-starter-security.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security.extensions</groupId>
|
|
<artifactId>spring-security-saml2-core</artifactId>
|
|
<version>${spring-security-saml2-core.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|