Using Business App Starter without a Vaadin Subscription

I can use a Vaadin Business App Starter, without a Vaadin Subscription, but excluding all Comercial Components (Chart, Dashboard etc…)?

Hi Fulvio,

Change in pom.xml the artifactId from vaadin with vaadin-core to use only free components

<dependencies>
	...
        <dependency>
            <groupId>com.vaadin</groupId>
            <!-- Replace artifactId with vaadin-core to use only free components -->
            <artifactId>vaadin</artifactId>
        </dependency>
	...
</dependencies>

hope this help