pmlopes / yoke

Yoke is a middleware framework for Vert.x
http://pmlopes.github.io/yoke/
Apache License 2.0
157 stars 44 forks source link

Cannot build Yoke after git clone from github #113

Closed wrobelm closed 10 years ago

wrobelm commented 10 years ago

I wanted to build yoke on my own but when I executed 'gradle tasks' it failed with error:

Execution failed for task ':tasks'.

Could not resolve all dependencies for configuration ':middleware:pac4j:compile'. Artifact 'commons-collections:commons-collections:3.1@jar' not found.

I didn't change anything in sources, just wanted to perform the build after clean git clone.

pmlopes commented 10 years ago

The artifact is on maven central: http://search.maven.org/#artifactdetails%7Ccommons-collections%7Ccommons-collections%7C3.1%7Cjar

Maybe central was down or your local cache is corrupted, can you try to clean your local cache and retry?

Also what OS are you trying to build?

wrobelm commented 10 years ago

Yeah, I know so it is alsostrange for me. I don't think the maven repo was down because during the build gradle downloaded a lot of other dependencies, but stopped on this one. I use Ubuntu 14, installed gradle with apt-get install gradle

wrobelm commented 10 years ago

After manually downloading the jar and putting it in the local repository the build went fine. Issue can be closed, thanks for your answer.