I just linked my Vaadin account to my GitHub Student account to get access to the pro version. However, I already started working on an app with the Free Version. How would I change the this app to allow me to use Pro Components? Thank you!
In your pom.xml dependencies, you should have the following block:
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-core</artifactId>
You can replace the artifactId
with vaadin
to include the Pro components.
Olli Tietäväinen:
In your pom.xml dependencies, you should have the following block:<dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-core</artifactId>
You can replace the
artifactId
withvaadin
to include the Pro components.
How would I indicate to the program that I have the pro version? Otherwise I get errors
That artifactId change (vaadin-core tand a Maven install should be enough.