2016-03-24 10:24:21 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
|
|
|
|
~ and other contributors as indicated by the @author tags.
|
|
|
|
~
|
|
|
|
~ 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-servers-app-server-tomcat</artifactId>
|
2020-03-24 07:30:22 +00:00
|
|
|
<version>9.0.4-SNAPSHOT</version>
|
2016-03-24 10:24:21 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>integration-arquillian-servers-app-server-tomcat7</artifactId>
|
2019-02-13 11:53:45 +00:00
|
|
|
<name>App Server - Tomcat 7</name>
|
2016-03-24 10:24:21 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<app.server.tomcat>tomcat7</app.server.tomcat>
|
|
|
|
|
|
|
|
<app.server.tomcat.groupId>org.apache.tomcat</app.server.tomcat.groupId>
|
|
|
|
<app.server.tomcat.artifactId>tomcat</app.server.tomcat.artifactId>
|
|
|
|
<app.server.tomcat.version>${tomcat7.version}</app.server.tomcat.version>
|
|
|
|
<app.server.tomcat.unpacked.folder.name>apache-tomcat-${tomcat7.version}</app.server.tomcat.unpacked.folder.name>
|
|
|
|
|
|
|
|
<app.server.oidc.adapter.artifactId>keycloak-tomcat7-adapter-dist</app.server.oidc.adapter.artifactId>
|
|
|
|
<app.server.saml.adapter.artifactId>keycloak-saml-tomcat7-adapter-dist</app.server.saml.adapter.artifactId>
|
2019-02-13 11:53:45 +00:00
|
|
|
|
2019-05-23 09:00:57 +00:00
|
|
|
<skip.dependencies.for.tomcat>true</skip.dependencies.for.tomcat>
|
|
|
|
|
2019-02-13 11:53:45 +00:00
|
|
|
<!-- newer resteasy-jaxrs is not compatible with annotation-api which is provided by Tomcat7 -->
|
|
|
|
<tomcat.resteasy.version>2.3.1.GA</tomcat.resteasy.version>
|
2019-05-23 09:00:57 +00:00
|
|
|
<tomcat.scannotation.version>1.0.3</tomcat.scannotation.version>
|
|
|
|
<tomcat.javassist.version>3.18.2-GA</tomcat.javassist.version>
|
|
|
|
<tomcat.javaee-api.version>7.0</tomcat.javaee-api.version>
|
|
|
|
<tomcat.org.glassfish.web.el-impl.version>2.2</tomcat.org.glassfish.web.el-impl.version>
|
2016-03-24 10:24:21 +00:00
|
|
|
</properties>
|
|
|
|
|
2019-02-13 11:53:45 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
|
|
<artifactId>integration-arquillian-servers-app-server-tomcat-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.arquillian.container</groupId>
|
|
|
|
<artifactId>arquillian-tomcat-managed-7</artifactId>
|
|
|
|
<version>${arquillian-tomcat7-container-version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-05-23 09:00:57 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>libs-for-tomcat-7</id>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
|
|
<artifactId>resteasy-jaxrs</artifactId>
|
|
|
|
<version>${tomcat.resteasy.version}</version>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.scannotation</groupId>
|
|
|
|
<artifactId>scannotation</artifactId>
|
|
|
|
<version>${tomcat.scannotation.version}</version>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<version>${tomcat.javassist.version}</version>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>javax</groupId>
|
|
|
|
<artifactId>javaee-api</artifactId>
|
|
|
|
<version>${tomcat.javaee-api.version}</version>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<!-- JSP compilation failed without this -->
|
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>el-impl</artifactId>
|
|
|
|
<version>${tomcat.org.glassfish.web.el-impl.version}</version>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<outputDirectory>${app.server.tomcat.home}/lib</outputDirectory>
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-03-24 10:24:21 +00:00
|
|
|
</project>
|