Maddon not found from netbeans project

Hi
I am trying to use maddon addon in my test project but didnt find it from netbeans. I searched frm dependency or even added in web.xml file but no luck. I have used this few weeks ago but I dont know why it’s not showing it up, any ideas?

Mortoza

Hi,

The Maddon library is not available in maven central yet, maybe you are missing the maven repository that hosts various Vaadin add-ons from your pom.xml? Something like this should exist in your pom:

    <repositories>
        <repository>
            <id>vaadin-addons</id>
            <url>http://maven.vaadin.com/vaadin-addons</url>
        </repository>
    </repositories>

Hi Matti
Thank you for responding. But thing is, that code is already existing in pom.xml file. It’s not working yet. Any tips?

regards
Mortoza

What is the exact error that you get? In code or in pom.xml? You could try updating/downgrading to a different version 1.19 is the latest. Also you could force IDE/Maven to force check from repositories, by executing “mvn install -U”.

cheers,
matti

Hi Matti
Thanks, now it is okay, it is updated …