summaryrefslogtreecommitdiffstats
path: root/documentation/migration
diff options
context:
space:
mode:
authorJens Jansson <Peppe@users.noreply.github.com>2017-04-03 08:16:33 +0300
committerHenri Sara <henri.sara@gmail.com>2017-04-03 08:16:33 +0300
commitb6056a2c5bfe6159ed95233b6e8e96cb262b5c74 (patch)
treeadef628115ff6050cf211344a4a20cfb59cc3cea /documentation/migration
parentb1c5f6ebd14352e62dea5ff21206539b77dc3dbd (diff)
downloadvaadin-framework-b6056a2c5bfe6159ed95233b6e8e96cb262b5c74.tar.gz
vaadin-framework-b6056a2c5bfe6159ed95233b6e8e96cb262b5c74.zip
Fixed @WidgetSet typo -> @Widgetset (#8996)
Diffstat (limited to 'documentation/migration')
-rw-r--r--documentation/migration/migrating-to-vaadin8.asciidoc2
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.