diff options
author | Jens Jansson <peppe@users.noreply.github.com> | 2017-04-03 08:16:33 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-05-08 14:46:35 +0300 |
commit | 96da2b25be5b119195202b2283d3ac03043a94fb (patch) | |
tree | c1ce5862b6438baf8feee62b22d2ca3f5c06cd44 | |
parent | 2976b4a8ef4784b0c6f9cef766b7387a53c08903 (diff) | |
download | vaadin-framework-96da2b25be5b119195202b2283d3ac03043a94fb.tar.gz vaadin-framework-96da2b25be5b119195202b2283d3ac03043a94fb.zip |
Fixed @WidgetSet typo -> @Widgetset (#8996)
-rw-r--r-- | documentation/migration/migrating-to-vaadin8.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/migration/migrating-to-vaadin8.asciidoc b/documentation/migration/migrating-to-vaadin8.asciidoc index e53659c963..3fc60c4127 100644 --- a/documentation/migration/migrating-to-vaadin8.asciidoc +++ b/documentation/migration/migrating-to-vaadin8.asciidoc @@ -102,7 +102,7 @@ When using compatibility packages in your project you need to changes references Typically, widgetset recompilation will handle this automatically for you, except for the following two cases which should be handled manually: * Your project defines a custom widgetset, in which case you need to make sure `Vaadin7WidgetSet` is inherited -* An UI in your project defines its widgetset with the annotation `@WidgetSet("com.vaadin.DefaultWidgetSet")`, which should be changed to `@WidgetSet("com.vaadin.v7.Vaadin7WidgetSet")` +* An UI in your project defines its widgetset with the annotation `@Widgetset("com.vaadin.DefaultWidgetSet")`, which should be changed to `@Widgetset("com.vaadin.v7.Vaadin7WidgetSet")` IMPORTANT: The widgetset compilation for `Vaadin7WidgetSet` requires at least 1G of memory. To ensure this, add `<extraJvmArgs>-Xmx1G</extraJvmArgs>` to the vaadin-maven-plugin configuration in your `pom.xml` file. |