Touchkit Maven Dependency

Hi there,

I tried to integrate Touchkit into my Vaadin 7 Application.
I know it is still in alpha and the Beta is in development. But sitll i would like to try it.

I added the POM - Snippet to my maven Pom


<dependency>
   <groupId>com.vaadin.addon</groupId>
   <artifactId>vaadin-touchkit-agpl</artifactId>
   <version>3.0.0-alpha1</version>
</dependency>

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

As it is sugested on the Download Site.

But I get following Error from Maven: Failure to find com.vaadin:vaadin-touchkit-agpl:jar:3.0.0-alpha1 in http://maven.vaadin.com/vaadin-addons

What is the correct Maven-Dependencies for Touchkit 3?

Thanks

Hi,

This works, so I’d be surprised if there is something wrong in vaadin maven repo:
http://maven.vaadin.com/vaadin-addons/com/vaadin/addon/vaadin-touchkit-agpl/3.0.0-alpha1/vaadin-touchkit-agpl-3.0.0-alpha1.jar

Your erros says:
com.vaadin:vaadin-touchkit-agpl:jar:3.0.0-alpha1
not
com.vaadin.addon:vaadin-touchkit-agpl:jar:3.0.0-alpha1

Maybe your groupId lacks “.addon” ?

cheers,
matti

Thanks that was it, stupid mistake of my own.
Next time i’ll check the POM better…