Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
How can I add my custom plugin to pom.xml
Is there any way to use my custom plugin with vaadin?
I want to make use of my plugin by name "UmaPlugin".
I try to do this in the POM.xml inside "<build>" . But the attempt was not successful
<plugin>
<groupId>UmaPlugin</groupId>
<artifactId>Uma-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>bind</goal>
</goals>
</execution>
</executions>
</plugin>
To use a custom plugin in Maven is not limited or affected by Vaadin framework. If your custom plugin behaves correctly, it should be possible to be added in
<build>
<plugins>
...
</plugins>
</build>