Last active
August 29, 2015 13:57
-
-
Save kellyrob99/9421696 to your computer and use it in GitHub Desktop.
gradle dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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