pom.xml

96 lines | 3.415 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.0.0.Beta2-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-->        
        <wildfly10.version>10.1.0.Final</wildfly10.version>
        <wildfly9.version>9.0.2.Final</wildfly9.version>
        <wildfly8.version>8.2.1.Final</wildfly8.version>
        <eap6.version>7.5.14.Final-redhat-2</eap6.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>9.0.1.Final</infinispan.version>--> <!-- Use same version like our infinispan version for now -->
        <jdg.version>8.4.0.Final-redhat-2</jdg.version><!-- JDG 7.1.0 -->
        
        <jboss.default.worker.io-threads>16</jboss.default.worker.io-threads>
        <jboss.default.worker.task-max-threads>128</jboss.default.worker.task-max-threads>

        <cache.default.worker.io-threads>2</cache.default.worker.io-threads>
        <cache.default.worker.task-max-threads>4</cache.default.worker.task-max-threads>
    </properties>

    <modules>
        <module>auth-server</module>
        <module>app-server</module>
        <module>cache-server</module>
    </modules>

    <profiles>
        <profile>
            <id>auth-server-cluster</id>
            <modules>
                <module>wildfly-balancer</module>
            </modules>
        </profile>
        
        <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>
            </properties>
        </profile>

    </profiles>
    
</project>