keycloak/testsuite/integration-arquillian/servers/pom.xml

85 lines
2.9 KiB
XML

<?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</artifactId>
<version>999.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>integration-arquillian-servers</artifactId>
<packaging>pom</packaging>
<name>Servers</name>
<properties>
<script.suffix>sh</script.suffix>
<!--app container versions-->
<eap.version>7.4.9.GA-redhat-00003</eap.version>
<eap71.version>7.1.5.GA-redhat-00002</eap71.version>
<jboss.as.version>7.1.1.Final</jboss.as.version>
<jboss.default.worker.io-threads>16</jboss.default.worker.io-threads>
<jboss.default.worker.task-max-threads>128</jboss.default.worker.task-max-threads>
<jboss.default.http.max-connections>500</jboss.default.http.max-connections>
<cache.default.worker.io-threads>2</cache.default.worker.io-threads>
<cache.default.worker.task-max-threads>4</cache.default.worker.task-max-threads>
<hotrod.sasl.mechanism>DIGEST-MD5</hotrod.sasl.mechanism>
<jboss.cli.executable>jboss-cli.sh</jboss.cli.executable>
<!-- Tomcat versions needs to be overwritten to newer versions because of https://issues.redhat.com/browse/KEYCLOAK-14103 -->
<tomcat9.version>9.0.29</tomcat9.version>
</properties>
<modules>
<module>auth-server</module>
<module>app-server</module>
<module>cache-server</module>
</modules>
<profiles>
<profile>
<id>auth-server-migration</id>
<modules>
<module>migration</module>
</modules>
</profile>
<profile>
<id>win</id>
<activation>
<os>
<family>Windows</family>
</os>
</activation>
<properties>
<script.suffix>bat</script.suffix>
<jboss.cli.executable>jboss-cli.ps1</jboss.cli.executable>
</properties>
</profile>
</profiles>
</project>