153 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			4.8 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.3-SNAPSHOT</version>
 | |
| 	</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>
 | |
| 			<plugin>
 | |
| 				<groupId>org.eclipse.jetty</groupId>
 | |
| 				<artifactId>jetty-maven-plugin</artifactId>
 | |
| 				<configuration>
 | |
| 					<war>${project.build.directory}/openid-connect-server-webapp.war</war>
 | |
| 					<webAppConfig>
 | |
| 						<contextPath>/openid-connect-server-webapp</contextPath>
 | |
| 					</webAppConfig>
 | |
| 				</configuration>
 | |
| 			</plugin>
 | |
| 			<plugin>
 | |
| 				<groupId>ro.isdc.wro4j</groupId>
 | |
| 				<artifactId>wro4j-maven-plugin</artifactId>
 | |
| 				<configuration>
 | |
| 					<targetGroups>bootstrap,bootstrap-responsive</targetGroups>
 | |
| 					<destinationFolder>${project.build.directory}/${project.build.finalName}</destinationFolder>
 | |
| 					<cssDestinationFolder>${project.build.directory}/${project.build.finalName}/resources/bootstrap2/css/</cssDestinationFolder>
 | |
| 					<jsDestinationFolder>${project.build.directory}/${project.build.finalName}/js/</jsDestinationFolder>
 | |
| 					<wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory>
 | |
| 				</configuration>
 | |
| 			</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.slf4j</groupId>
 | |
| 			<artifactId>jcl-over-slf4j</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>org.slf4j</groupId>
 | |
| 			<artifactId>slf4j-log4j12</artifactId>
 | |
| 		</dependency>
 | |
| 		<dependency>
 | |
| 			<groupId>log4j</groupId>
 | |
| 			<artifactId>log4j</artifactId>
 | |
| 		</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</groupId>
 | |
| 			<artifactId>jstl</artifactId>
 | |
| 		</dependency>
 | |
| 
 | |
| 		<dependency>
 | |
| 			<groupId>com.zaxxer</groupId>
 | |
| 			<artifactId>HikariCP</artifactId>
 | |
| 		</dependency>
 | |
| 	</dependencies>
 | |
| 	<description>Deployable package of the OpenID Connect server</description>
 | |
| </project>
 |