pom.xml

92 lines | 3.348 kB Blame History Raw Download
<?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>4.8.3.Final</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-->
        <eap6.version>7.5.21.Final-redhat-1</eap6.version>
        <eap71.version>7.1.5.GA-redhat-00002</eap71.version>
        <jboss.as.version>7.1.1.Final</jboss.as.version>
        <tomcat7.version>7.0.68</tomcat7.version>
        <tomcat8.version>8.0.32</tomcat8.version>
        <tomcat9.version>9.0.0.M3</tomcat9.version>
        <karaf3.version>3.0.3</karaf3.version>
        <fuse61.version>6.1.0.redhat-379</fuse61.version>
        <!--<fuse62.version>6.2.0.redhat-133</fuse62.version>-->
        <fuse62.version>6.2.1.redhat-084</fuse62.version>
        
        <!-- cache server versions -->
        <!--<infinispan.version>8.2.8.Final</infinispan.version>--><!-- Use same infinspan-server version as our version -->
        <jdg.version>8.5.3.Final-redhat-00002</jdg.version><!-- JDG 7.2.3 -->
        
        <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>
        
        <jboss.cli.executable>jboss-cli.sh</jboss.cli.executable>
    </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>