vaadin / archetypes

Archetypes for Vaadin platform
https://vaadin.com
4 stars 7 forks source link

Sample application archetypes should use precompiled com.vaadin.DefaultWidgetset #93

Closed vaadin-bot closed 8 years ago

vaadin-bot commented 8 years ago

Originally by zigac


Change value of @Widgetset in MyUI.java:

@Widgetset("com.vaadin.DefaultWidgetSet")
public class MyUI extends UI

and add dependency to pom.xml:

<dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-client-compiled</artifactId>
</dependency>

Usually when creating new demo/sample Vaadin project, you want to use just core Vaadin components.

As well as newcomers came testing Vaadin, want to start with development and testing immediately without need of running complicated and longlasting maven tasks to compile widgetset.


Imported from https://dev.vaadin.com/ issue #19399

vaadin-bot commented 8 years ago

Originally by @Artur-


9629