How to add created client side widget to another vaadin project

Hi
I have successfuly created a client side widget component and it is working fine. but i dont know how to add that widget to new vaadin project. i’m using eclipse IDE.

Hi,

Which tool are you using for dependency management? Maven? If so, you’ll just need to add it to the new Vaadin project’s dependencies once you’ve build your widget locally.

-Olli

Thanks Mr Olli, it is working
i added following to pom.xml and updated the maven (Right click on the project > Maven > Update project).

<dependency>
<groupId>xxxx.widget.xx</groupId>
<artifactId>xxxx</artifactId>
<version>${project.version}</version>
</dependency>

Good to hear :slight_smile: