Skip to content

Instantly share code, notes, and snippets.

@kellyrob99
Last active August 29, 2015 13:57
Show Gist options
  • Save kellyrob99/9421696 to your computer and use it in GitHub Desktop.
Save kellyrob99/9421696 to your computer and use it in GitHub Desktop.
gradle dependencies
apply plugin: 'java'
repositories{
mavenCentral()
}
configurations {
dummy
}
dependencies {
dummy ('com.actionbarsherlock:actionbarsherlock:4.4.0@aar')
compile ('com.actionbarsherlock:actionbarsherlock:4.4.0@aar'){ transitive = true }
}
gradle dependencies
:dependencies
------------------------------------------------------------
Root project
------------------------------------------------------------
archives - Configuration for archive artifacts.
No dependencies
compile - Compile classpath for source set 'main'.
\--- com.actionbarsherlock:actionbarsherlock:4.4.0
\--- com.google.android:support-v4:r7
default - Configuration for default artifacts.
\--- com.actionbarsherlock:actionbarsherlock:4.4.0
\--- com.google.android:support-v4:r7
dummy
\--- com.actionbarsherlock:actionbarsherlock:4.4.0
runtime - Runtime classpath for source set 'main'.
\--- com.actionbarsherlock:actionbarsherlock:4.4.0
\--- com.google.android:support-v4:r7
testCompile - Compile classpath for source set 'test'.
\--- com.actionbarsherlock:actionbarsherlock:4.4.0
\--- com.google.android:support-v4:r7
testRuntime - Runtime classpath for source set 'test'.
\--- com.actionbarsherlock:actionbarsherlock:4.4.0
\--- com.google.android:support-v4:r7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment