38 lines
No EOL
1.3 KiB
XML
38 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>integration-arquillian-servers</artifactId>
|
|
<groupId>org.keycloak.testsuite</groupId>
|
|
<version>999.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>pom</packaging>
|
|
|
|
<artifactId>integration-arquillian-servers-adapter-spi</artifactId>
|
|
<name>Testsuite Adapter SPI</name>
|
|
|
|
<modules>
|
|
<module>undertow-adapter-spi-jakarta</module>
|
|
<module>undertow-adapter-jakarta</module>
|
|
<module>undertow-adapter-saml-jakarta</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<ant.jvm.args>-Dnone</ant.jvm.args>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>jdk17+</id>
|
|
<activation>
|
|
<jdk>[17,)</jdk>
|
|
</activation>
|
|
<properties>
|
|
<!--For more information, see https://github.com/apache/ant/pull/200-->
|
|
<ant.jvm.args>-Djava.security.manager=allow</ant.jvm.args>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project> |