Skip to content

Instantly share code, notes, and snippets.

@j2emanue
Created March 19, 2016 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j2emanue/6a5de4d805fc3f27b680 to your computer and use it in GitHub Desktop.
Save j2emanue/6a5de4d805fc3f27b680 to your computer and use it in GitHub Desktop.
gradle dependencies scopes tutorial
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.dagger:dagger:2.0'
apt 'com.google.dagger:dagger-compiler:2.0'
provided 'org.glassfish:javax.annotation:10.0-b28'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment