Keycloak
87 строк · 3.1 Кб
1<?xml version="1.0"?>
2<!--
3~ Copyright 2016 Red Hat, Inc. and/or its affiliates
4~ and other contributors as indicated by the @author tags.
5~
6~ Licensed under the Apache License, Version 2.0 (the "License");
7~ you may not use this file except in compliance with the License.
8~ You may obtain a copy of the License at
9~
10~ http://www.apache.org/licenses/LICENSE-2.0
11~
12~ Unless required by applicable law or agreed to in writing, software
13~ distributed under the License is distributed on an "AS IS" BASIS,
14~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15~ See the License for the specific language governing permissions and
16~ limitations under the License.
17-->
18
19<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"20xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">21<parent>22<groupId>org.keycloak.testsuite</groupId>23<artifactId>integration-arquillian</artifactId>24<version>999.0.0-SNAPSHOT</version>25</parent>26<modelVersion>4.0.0</modelVersion>27
28<artifactId>integration-arquillian-servers</artifactId>29<packaging>pom</packaging>30<name>Servers</name>31
32<properties>33<script.suffix>sh</script.suffix>34
35<!--app container versions-->36<eap.version>${eap7.version}</eap.version>37<eap6.version>7.5.21.Final-redhat-1</eap6.version>38<eap71.version>7.1.5.GA-redhat-00002</eap71.version>39<eap7.version>7.4.9.GA-redhat-00003</eap7.version>40<jboss.as.version>7.1.1.Final</jboss.as.version>41
42<jboss.default.worker.io-threads>16</jboss.default.worker.io-threads>43<jboss.default.worker.task-max-threads>128</jboss.default.worker.task-max-threads>44<jboss.default.http.max-connections>500</jboss.default.http.max-connections>45
46<cache.default.worker.io-threads>2</cache.default.worker.io-threads>47<cache.default.worker.task-max-threads>4</cache.default.worker.task-max-threads>48<hotrod.sasl.mechanism>DIGEST-MD5</hotrod.sasl.mechanism>49
50<jboss.cli.executable>jboss-cli.sh</jboss.cli.executable>51
52<!-- Tomcat versions needs to be overwritten to newer versions because of https://issues.redhat.com/browse/KEYCLOAK-14103 -->53<tomcat9.version>9.0.29</tomcat9.version>54</properties>55
56<modules>57<module>adapter-spi</module>58<module>auth-server</module>59<module>app-server</module>60<module>cache-server</module>61</modules>62
63<profiles>64
65<profile>66<id>auth-server-migration</id>67<modules>68<module>migration</module>69</modules>70</profile>71
72<profile>73<id>win</id>74<activation>75<os>76<family>Windows</family>77</os>78</activation>79<properties>80<script.suffix>bat</script.suffix>81<jboss.cli.executable>jboss-cli.ps1</jboss.cli.executable>82</properties>83</profile>84
85</profiles>86
87</project>88