100 lines
3.8 KiB
XML
100 lines
3.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Licensed to Apereo under one or more contributor license
|
|
agreements. See the NOTICE file distributed with this work
|
|
for additional information regarding copyright ownership.
|
|
Apereo licenses this file to you 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 the following location:
|
|
|
|
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">
|
|
<parent>
|
|
<artifactId>cas-client</artifactId>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<version>3.6.1-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>cas-client-integration-tomcat-v90</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Jasig CAS Client for Java - Tomcat 9.0.x Integration</name>
|
|
|
|
<properties>
|
|
<tomcat.version>9.0.26</tomcat.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<artifactId>cas-client-integration-tomcat-common</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<artifactId>cas-client-support-saml</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
<version>${tomcat.version}</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-catalina</artifactId>
|
|
<version>${tomcat.version}</version>
|
|
<type>jar</type>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-servlet-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-juli</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-annotations-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.tomcat</groupId>
|
|
<artifactId>tomcat-util</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jasig.cas.client</groupId>
|
|
<artifactId>cas-client-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>jar</type>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|