gradle - Where to download Netflix Astyanax dependencies? -


i want include astyanax project. checkout code github , compiled "gradlew build". not familiar gradle.

i include astyanx jar files manually project. when run it, complains missing jar.

i wonder, can download dependencies bundle astyanax?

java library projects don't provide single download location dependencies. instead, typically use build tool supports maven repositories (e.g. maven or gradle) own project, automatically download required dependencies behind scenes.

if want hold of dependencies astyanax project, try add following build.gradle:

task copylibs(type: copy) {     configurations.runtime     "libs" } 

running gradlew copylibs should copy (compile , runtime) dependencies libs directory.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -