146 lines
4.2 KiB
XML
146 lines
4.2 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>cz.muni.ics</groupId>
|
|
<artifactId>perun-oidc-parent</artifactId>
|
|
<version>10.0.1</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>perun-oidc-server-webapp</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<properties>
|
|
<config.location>/etc/perun</config.location>
|
|
<log.to>FILE</log.to>
|
|
<log.contextName>oidc</log.contextName>
|
|
<log.facility>LOCAL7</log.facility>
|
|
<log.level>info</log.level>
|
|
<!--suppress UnresolvedMavenProperty -->
|
|
<log.rolling-file>${catalina.base}/logs/${CONTEXT_NAME}</log.rolling-file>
|
|
<!--suppress UnresolvedMavenProperty -->
|
|
<log.file>${catalina.base}/logs/${CONTEXT_NAME}</log.file>
|
|
<log.file-extension>log</log.file-extension>
|
|
<final.name>oidc</final.name>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<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.springframework.security</groupId>
|
|
<artifactId>spring-security-taglibs</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.web</groupId>
|
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.muni.ics</groupId>
|
|
<artifactId>perun-oidc-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</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>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>logback.xml</include>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<warName>${final.name}</warName>
|
|
<webResources>
|
|
<resource>
|
|
<directory>src/main/webapp</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>**/*.tag</include>
|
|
<include>**/*.jsp</include>
|
|
<include>WEB-INF/user-context.xml</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>
|
|
|
|
</project>
|