diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-11-15 10:22:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-15 10:22:32 +0200 |
commit | 3344de2f9aa238d90205a0b8ed11b0853e8b85c4 (patch) | |
tree | d15846fa3458c491259c91f5b6667066f45a37a8 /test | |
parent | 9901f4421805fb965229b33b93e1a59e10419212 (diff) | |
download | vaadin-framework-3344de2f9aa238d90205a0b8ed11b0853e8b85c4.tar.gz vaadin-framework-3344de2f9aa238d90205a0b8ed11b0853e8b85c4.zip |
Add mention of Wildfly 11 support and a test for it (#10319)
Diffstat (limited to 'test')
-rw-r--r-- | test/servlet-containers/pom.xml | 2 | ||||
-rw-r--r-- | test/servlet-containers/wildfly11/pom.xml | 43 |
2 files changed, 45 insertions, 0 deletions
diff --git a/test/servlet-containers/pom.xml b/test/servlet-containers/pom.xml index c5ced080bd..d4a9bd1b26 100644 --- a/test/servlet-containers/pom.xml +++ b/test/servlet-containers/pom.xml @@ -237,6 +237,7 @@ <modules> <module>jsp-integration</module> <module>karaf</module> + <module>wildfly11</module> <module>wildfly10</module> <module>wildfly9</module> <module>wildfly8</module> @@ -265,6 +266,7 @@ <profile> <id>wildfly</id> <modules> + <module>wildfly11</module> <module>wildfly10</module> <module>wildfly9</module> <module>wildfly8</module> diff --git a/test/servlet-containers/wildfly11/pom.xml b/test/servlet-containers/wildfly11/pom.xml new file mode 100644 index 0000000000..76f0b5f2f4 --- /dev/null +++ b/test/servlet-containers/wildfly11/pom.xml @@ -0,0 +1,43 @@ +<?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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-servlet-containers-test</artifactId> + <version>8.2-SNAPSHOT</version> + </parent> + <artifactId>vaadin-test-wildfly11-server</artifactId> + <name>Vaadin Wildfly 11 Test</name> + <packaging>war</packaging> + <properties> + <jetty.skip>true</jetty.skip> + <wildfly.version>11.0.0.Final</wildfly.version> + <server.name>wildfly11</server.name> + </properties> + + <dependencies> + <!-- UI classes and tests from dependencies --> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-test-server-ui</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-test-server-tests</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <!-- Server configuration --> + <plugin> + <groupId>org.wildfly.plugins</groupId> + <artifactId>wildfly-maven-plugin</artifactId> + </plugin> + </plugins> + </build> +</project> |