124 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
<?xml version="1.0"?>
 | 
						|
<!--
 | 
						|
    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/xsd/maven-4.0.0.xsd">
 | 
						|
	<modelVersion>4.0.0</modelVersion>
 | 
						|
	<parent>
 | 
						|
		<groupId>org.mitre</groupId>
 | 
						|
		<artifactId>openid-connect-parent</artifactId>
 | 
						|
		<version>1.3.4-SNAPSHOT</version>
 | 
						|
		<relativePath>../pom.xml</relativePath>
 | 
						|
	</parent>
 | 
						|
 | 
						|
	<artifactId>openid-connect-server-webapp</artifactId>
 | 
						|
	<packaging>war</packaging>
 | 
						|
	<name>OpenID Connect Server Webapp</name>
 | 
						|
 | 
						|
	<build>
 | 
						|
		<plugins>
 | 
						|
			<plugin>
 | 
						|
				<groupId>org.apache.maven.plugins</groupId>
 | 
						|
				<artifactId>maven-compiler-plugin</artifactId>
 | 
						|
				<configuration>
 | 
						|
					<source>${java-version}</source>
 | 
						|
					<target>${java-version}</target>
 | 
						|
				</configuration>
 | 
						|
			</plugin>
 | 
						|
			<plugin>
 | 
						|
				<groupId>org.apache.maven.plugins</groupId>
 | 
						|
				<artifactId>maven-war-plugin</artifactId>
 | 
						|
				<configuration>
 | 
						|
					<warName>openid-connect-server-webapp</warName>
 | 
						|
					<webResources>
 | 
						|
						<resource>
 | 
						|
							<directory>src/main/webapp</directory>
 | 
						|
							<filtering>true</filtering>
 | 
						|
							<includes>
 | 
						|
								<include>**/*.tag</include>
 | 
						|
								<include>**/*.jsp</include>
 | 
						|
							</includes>
 | 
						|
						</resource>
 | 
						|
						<resource>
 | 
						|
							<directory>src/main/webapp</directory>
 | 
						|
							<filtering>false</filtering>
 | 
						|
							<excludes>
 | 
						|
								<exclude>**/*.tag</exclude>
 | 
						|
								<exclude>**/*.jsp</exclude>
 | 
						|
							</excludes>
 | 
						|
						</resource>
 | 
						|
					</webResources>
 | 
						|
					<packagingExcludes>less/**</packagingExcludes>
 | 
						|
				</configuration>
 | 
						|
			</plugin>
 | 
						|
			<plugin>
 | 
						|
				<groupId>org.apache.maven.plugins</groupId>
 | 
						|
				<artifactId>maven-dependency-plugin</artifactId>
 | 
						|
				<executions>
 | 
						|
					<execution>
 | 
						|
						<id>install</id>
 | 
						|
						<phase>install</phase>
 | 
						|
						<goals>
 | 
						|
							<goal>sources</goal>
 | 
						|
						</goals>
 | 
						|
					</execution>
 | 
						|
				</executions>
 | 
						|
			</plugin>
 | 
						|
		</plugins>
 | 
						|
	</build>
 | 
						|
 | 
						|
	<dependencies>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.mitre</groupId>
 | 
						|
			<artifactId>openid-connect-server</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework</groupId>
 | 
						|
			<artifactId>spring-orm</artifactId>
 | 
						|
			<exclusions>
 | 
						|
				<exclusion>
 | 
						|
					<groupId>commons-logging</groupId>
 | 
						|
					<artifactId>commons-logging</artifactId>
 | 
						|
				</exclusion>
 | 
						|
			</exclusions>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.hsqldb</groupId>
 | 
						|
			<artifactId>hsqldb</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.eclipse.persistence</groupId>
 | 
						|
			<artifactId>org.eclipse.persistence.jpa</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>org.springframework.security</groupId>
 | 
						|
			<artifactId>spring-security-taglibs</artifactId>
 | 
						|
		</dependency>
 | 
						|
		<dependency>
 | 
						|
			<groupId>javax.servlet.jsp.jstl</groupId>
 | 
						|
			<artifactId>jstl-api</artifactId>
 | 
						|
		</dependency>
 | 
						|
 | 
						|
		<dependency>
 | 
						|
			<groupId>com.zaxxer</groupId>
 | 
						|
			<artifactId>HikariCP</artifactId>
 | 
						|
		</dependency>
 | 
						|
	</dependencies>
 | 
						|
 | 
						|
	<description>Deployable package of the OpenID Connect server</description>
 | 
						|
</project>
 |