Maven: vaadin-client artifact not found

Hey,

When updating an existing Vaadin 7 project or creating a new fresh one after the application-archetype for Vaadin 7.1.1 i’m getting following error[code]
Missing artifact com.vaadin:vaadin-client:jar:7.1.1

ArtifactTransferException: Failure to transfer com.vaadin:vaadin-client:jar:7.1.1 from
http://repo.maven.apache.org/maven2 was cached in the local repository, resolution
will not be reattempted until the update interval of central has elapsed or updates are
forced. Original error: Could not transfer artifact com.vaadin:vaadin-client:jar:7.1.1 from/to
central (http://repo.maven.apache.org/maven2): No response received after 60000
[/code]in the pom.xml in the lines <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client</artifactId> <version>${vaadin.version}</version> <scope>provided</scope> </dependency> Removing the scope line doesn’t change anything. Did something go wrong when uploading the files to maven, where there changes in the way this dependency should be handled in V7.1.1 or did i just miss something when i tried to uprade?

Regards,
M R

PS: Same for the vaadin-client-compiler dependency.
Also i just had a look in my local repository and it seems like the vaadin-client jar wasn’t downloaded as i could only find 5 files which are .pom files, one .jar.lastupdated file and one maven file.

Nevermind!

I solved it by executing mvn clean install -U