mirror of
https://github.com/wulkanowy/wulkanowy.git
synced 2024-11-10 02:20:50 -06:00
4b425f9b39
Add first unit test & code coverage config
29 lines
717 B
Groovy
29 lines
717 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
|
|
classpath "gradle.plugin.io.github.ddimtirov:codacy-gradle-plugin:0.1.0"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|