Created
January 29, 2015 10:29
-
-
Save femmerling/9ab5c7528f8625537f99 to your computer and use it in GitHub Desktop.
project root build.gradle
This file contains 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
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:1.0.0' | |
// this is the robojava plugin | |
classpath 'com.kageiit:robojava-plugin:1.+' | |
// this is for cobertura so you have test coverage check | |
classpath("net.saliman:gradle-cobertura-plugin:2.2.5") { | |
exclude group: "xerces", module: "xercesImpl" | |
} | |
} | |
} | |
allprojects { | |
repositories { | |
mavenCentral() | |
jcenter() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment