Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Ilia Motornyi c10d96b43c Set correct GWT .dtd definition (#11110) 5 лет назад
..
addon-using-init-param-widget-set Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
addon-using-no-defined-widget-set Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
addon-using-own-widget-set Set correct GWT .dtd definition (#11110) 5 лет назад
bean-api-validation Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
bean-impl-validation Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
cdi Fix CDI and IE11 tests (#11042) 6 лет назад
default-widget-set Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
dependency-rewrite Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
dependency-rewrite-addon Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
own-widget-set Set correct GWT .dtd definition (#11110) 5 лет назад
servlet-containers Update version numbers in Release Notes (#11062) 6 лет назад
space in directory Set correct GWT .dtd definition (#11110) 5 лет назад
spring-boot Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
spring-boot-subcontext Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
vaadin7-widget-set Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
vaadinservletconfiguration-widget-set Set correct GWT .dtd definition (#11110) 5 лет назад
widget-set-testutil Update project version to 8.6-SNAPSHOT (#11011) 6 лет назад
README.md Add maven based server tests for Wildfly and Jetty (#10116) 6 лет назад
pom.xml Add pluginRepository to test/pom.xml (#11015) 6 лет назад

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.