208 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			208 lines
		
	
	
		
			5.9 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>
 | 
						|
 | 
						|
	<parent>
 | 
						|
		<groupId>cz.muni.ics</groupId>
 | 
						|
		<artifactId>perun-oidc-parent</artifactId>
 | 
						|
		<version>5.0.0</version>
 | 
						|
		<relativePath>../pom.xml</relativePath>
 | 
						|
	</parent>
 | 
						|
 | 
						|
	<artifactId>perun-oidc-server</artifactId>
 | 
						|
 | 
						|
	<dependencies>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework.security.oauth</groupId>
 | 
						|
			<artifactId>spring-security-oauth2</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework</groupId>
 | 
						|
			<artifactId>spring-tx</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework</groupId>
 | 
						|
			<artifactId>spring-orm</artifactId>
 | 
						|
			<scope>test</scope>
 | 
						|
			<exclusions>
 | 
						|
				<exclusion>
 | 
						|
					<groupId>commons-logging</groupId>
 | 
						|
					<artifactId>commons-logging</artifactId>
 | 
						|
				</exclusion>
 | 
						|
			</exclusions>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.eclipse.persistence</groupId>
 | 
						|
			<artifactId>org.eclipse.persistence.core</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.hsqldb</groupId>
 | 
						|
			<artifactId>hsqldb</artifactId>
 | 
						|
			<scope>test</scope>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.eclipse.persistence</groupId>
 | 
						|
			<artifactId>org.eclipse.persistence.jpa</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>commons-io</groupId>
 | 
						|
			<artifactId>commons-io</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>com.nimbusds</groupId>
 | 
						|
			<artifactId>nimbus-jose-jwt</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.bouncycastle</groupId>
 | 
						|
			<artifactId>bcprov-jdk15on</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>com.fasterxml.jackson.core</groupId>
 | 
						|
			<artifactId>jackson-databind</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>com.google.code.gson</groupId>
 | 
						|
			<artifactId>gson</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>com.google.guava</groupId>
 | 
						|
			<artifactId>guava</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.apache.httpcomponents</groupId>
 | 
						|
			<artifactId>httpclient</artifactId>
 | 
						|
			<exclusions>
 | 
						|
				<exclusion>
 | 
						|
					<groupId>commons-codec</groupId>
 | 
						|
					<artifactId>commons-codec</artifactId>
 | 
						|
				</exclusion>
 | 
						|
			</exclusions>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>junit</groupId>
 | 
						|
			<artifactId>junit</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.mockito</groupId>
 | 
						|
			<artifactId>mockito-core</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework</groupId>
 | 
						|
			<artifactId>spring-test</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>javax.annotation</groupId>
 | 
						|
			<artifactId>javax.annotation-api</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>javax.servlet</groupId>
 | 
						|
			<artifactId>servlet-api</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>javax.servlet</groupId>
 | 
						|
			<artifactId>jstl</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.apache.commons</groupId>
 | 
						|
			<artifactId>commons-lang3</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>com.fasterxml.jackson.dataformat</groupId>
 | 
						|
			<artifactId>jackson-dataformat-yaml</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.mariadb.jdbc</groupId>
 | 
						|
			<artifactId>mariadb-java-client</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.postgresql</groupId>
 | 
						|
			<artifactId>postgresql</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.apache.directory.api</groupId>
 | 
						|
			<artifactId>api-all</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.codehaus.janino</groupId>
 | 
						|
			<artifactId>janino</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>ch.qos.logback</groupId>
 | 
						|
			<artifactId>logback-classic</artifactId>
 | 
						|
			<exclusions>
 | 
						|
				<exclusion>
 | 
						|
					<groupId>org.slf4j</groupId>
 | 
						|
					<artifactId>slf4j-api</artifactId>
 | 
						|
				</exclusion>
 | 
						|
			</exclusions>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.slf4j</groupId>
 | 
						|
			<artifactId>jul-to-slf4j</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>net.javacrumbs.shedlock</groupId>
 | 
						|
			<artifactId>shedlock-spring</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>net.javacrumbs.shedlock</groupId>
 | 
						|
			<artifactId>shedlock-provider-jdbc-template</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>jakarta.xml.bind</groupId>
 | 
						|
			<artifactId>jakarta.xml.bind-api</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.glassfish.jaxb</groupId>
 | 
						|
			<artifactId>jaxb-runtime</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>jakarta.servlet</groupId>
 | 
						|
			<artifactId>jakarta.servlet-api</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework</groupId>
 | 
						|
			<artifactId>spring-aop</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.aspectj</groupId>
 | 
						|
			<artifactId>aspectjweaver</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework.security.extensions</groupId>
 | 
						|
			<artifactId>spring-security-saml2-core</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.projectlombok</groupId>
 | 
						|
			<artifactId>lombok</artifactId>
 | 
						|
		</dependency>
 | 
						|
	</dependencies>
 | 
						|
 | 
						|
	<build>
 | 
						|
		<plugins>
 | 
						|
			<plugin>
 | 
						|
				<groupId>org.apache.maven.plugins</groupId>
 | 
						|
				<artifactId>maven-compiler-plugin</artifactId>
 | 
						|
			</plugin>
 | 
						|
		</plugins>
 | 
						|
	</build>
 | 
						|
 | 
						|
</project>
 |