2016-03-14 11:08:36 +00:00
|
|
|
<?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</artifactId>
|
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
2017-08-28 13:46:22 +00:00
|
|
|
<version>3.4.0.CR1-SNAPSHOT</version>
|
2016-03-14 11:08:36 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>integration-arquillian-test-apps</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Test apps</name>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>js-console</module>
|
|
|
|
<module>test-apps-dist</module>
|
2016-06-14 08:17:03 +00:00
|
|
|
<module>js-database</module>
|
2016-06-30 12:46:34 +00:00
|
|
|
<module>photoz</module>
|
|
|
|
<module>hello-world-authz-service</module>
|
2016-07-29 15:42:53 +00:00
|
|
|
<module>servlet-authz</module>
|
2017-04-20 13:41:43 +00:00
|
|
|
<module>servlet-policy-enforcer</module>
|
2016-09-21 08:40:36 +00:00
|
|
|
<module>servlets</module>
|
2016-11-09 02:58:02 +00:00
|
|
|
<module>app-profile-jee</module>
|
2017-02-17 07:48:50 +00:00
|
|
|
<module>cors</module>
|
2016-03-14 11:08:36 +00:00
|
|
|
</modules>
|
2016-09-21 08:40:36 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-11-09 02:58:02 +00:00
|
|
|
</project>
|