您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Anna Koskinen 7174593574
Small updates to servlet container test setup. (#12318) (#12334)
2 年前
..
addon-using-init-param-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
addon-using-no-defined-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
addon-using-own-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
bean-api-validation Update to 8.13-SNAPSHOT (#12110) 3 年前
bean-impl-validation Update to 8.13-SNAPSHOT (#12110) 3 年前
cdi Update to 8.13-SNAPSHOT (#12110) 3 年前
default-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
dependency-rewrite Update to 8.13-SNAPSHOT (#12110) 3 年前
dependency-rewrite-addon Update to 8.13-SNAPSHOT (#12110) 3 年前
own-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
servlet-containers Small updates to servlet container test setup. (#12318) (#12334) 2 年前
space in directory Update to 8.13-SNAPSHOT (#12110) 3 年前
spring-boot Update to 8.13-SNAPSHOT (#12110) 3 年前
spring-boot-subcontext Update to 8.13-SNAPSHOT (#12110) 3 年前
vaadin7-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
vaadinservletconfiguration-widget-set Update to 8.13-SNAPSHOT (#12110) 3 年前
widget-set-testutil Bump JUnit from 4.12 to 4.13.1 (#12122) 3 年前
README.md Add maven based server tests for Wildfly and Jetty (#10116) 6 年前
pom.xml chore: Change Jetty version to 9.4.38.v20210224 (#12248) 3 年前

README.md

Vaadin Test

This is a test project to verify the basic functionality of various related plugins and addons.

General use

To validate a given Vaadin Version, run mvn clean verify -Dvaadin.version=VERSIONNUMBER.

Server testing

To validate only server compatibility, run mvn clean verify -Dvaadin.version=VERSIONNUMBER in the servlet-containers module.

To test only a subset of the servers, there are profiles with the server name. For example -P wildfly runs all Wildfly tests, -P glassfish,jetty runs all the Glassfish and Jetty tests.

Running an individual test locally

To install dependencies for testing an individual module locally, run mvn clean install -Dinstall.skip=false in the dependency module.

For example you can install all dependencies for running any individual server test module with the following command in the test root:

mvn clean install -Dinstall.skip=false -pl .,servlet-containers,servlet-containers/generic-ui,servlet-containers/generic-tests

This will install the parent POMs on both levels as well as the UI and server test dependencies.