Reputation: 51
I was just about to get started with the vaadin start project (https://start.vaadin.com/). I downloaded it and imported it into eclipse. However after that I got a Maven import error on line 112+ telling me there is a "Missing artifact org.vaadin.artur:a-vaadin-helper:jar:1.5.0"
<dependency>
<groupId>org.vaadin.artur</groupId>
<artifactId>a-vaadin-helper</artifactId>
<version>1.5.0</version>
</dependency>
All other dependencies can be resolved. I do not have a custom settings.xml for maven. Refreshing does not help.
Upvotes: 2
Views: 1033
Reputation: 5342
The artifact is located in the Vaadin Addons repository (for which there is a definition in the pom.xml
). Perhaps you are using a Maven proxy that does not include this repository?
Upvotes: 1