Maven dependencies are not found, but are locally there

Hi,

I’m trying to set up a basic maven config for vaadin 7, and use the MVVM bambi addon. mvn install works as long as I exclude the addon.
But when I try to compile it with the addon:
"Could not resolve dependencies for project … " with a list of all vaadin jars.

My Maven config can’t be that wrong, as the dependencies can be found manually in .m2 and execute without the addon.

But what might be wrong then?


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

		<dependency>
		   <groupId>org.vaadin.addons.bambi</groupId>
		   <artifactId>bambi-addon</artifactId>
		   <version>1.0.0-alpha3</version>
		</dependency>