diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2018-07-19 12:42:26 +0300 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2018-07-19 12:42:26 +0300 |
commit | 5ef55253e5f26bdebf9e6ab6e14640d1f3002727 (patch) | |
tree | 9eb9de3af6b2712f7a11934720d0bd78daf50ff5 /test | |
parent | 5d368053f4e6bb90464a4d4ecaf8d4768a63e7ef (diff) | |
download | vaadin-framework-5ef55253e5f26bdebf9e6ab6e14640d1f3002727.tar.gz vaadin-framework-5ef55253e5f26bdebf9e6ab6e14640d1f3002727.zip |
Update version numbers in Release Notes (#11062)
This patch also introduces missing tests for newer Wildfly versions.
Addresses #11050
Diffstat (limited to 'test')
-rw-r--r-- | test/servlet-containers/pom.xml | 4 | ||||
-rw-r--r-- | test/servlet-containers/wildfly12/pom.xml | 43 | ||||
-rw-r--r-- | test/servlet-containers/wildfly13/pom.xml | 43 |
3 files changed, 90 insertions, 0 deletions
diff --git a/test/servlet-containers/pom.xml b/test/servlet-containers/pom.xml index 7f461cb233..5a6c6f7748 100644 --- a/test/servlet-containers/pom.xml +++ b/test/servlet-containers/pom.xml @@ -237,6 +237,8 @@ <modules> <module>jsp-integration</module> <module>karaf</module> + <module>wildfly13</module> + <module>wildfly12</module> <module>wildfly11</module> <module>wildfly10</module> <module>wildfly9</module> @@ -266,6 +268,8 @@ <profile> <id>wildfly</id> <modules> + <module>wildfly13</module> + <module>wildfly12</module> <module>wildfly11</module> <module>wildfly10</module> <module>wildfly9</module> diff --git a/test/servlet-containers/wildfly12/pom.xml b/test/servlet-containers/wildfly12/pom.xml new file mode 100644 index 0000000000..d359315f97 --- /dev/null +++ b/test/servlet-containers/wildfly12/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.6-SNAPSHOT</version> + </parent> + <artifactId>vaadin-test-wildfly12-server</artifactId> + <name>Vaadin Wildfly 12 Test</name> + <packaging>war</packaging> + <properties> + <jetty.skip>true</jetty.skip> + <wildfly.version>12.0.0.Final</wildfly.version> + <server.name>wildfly12</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> diff --git a/test/servlet-containers/wildfly13/pom.xml b/test/servlet-containers/wildfly13/pom.xml new file mode 100644 index 0000000000..d4e97f26d0 --- /dev/null +++ b/test/servlet-containers/wildfly13/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.6-SNAPSHOT</version> + </parent> + <artifactId>vaadin-test-wildfly13-server</artifactId> + <name>Vaadin Wildfly 13 Test</name> + <packaging>war</packaging> + <properties> + <jetty.skip>true</jetty.skip> + <wildfly.version>13.0.0.Final</wildfly.version> + <server.name>wildfly13</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> |