mirror of https://github.com/BOINC/boinc.git
30 lines
751 B
Groovy
30 lines
751 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = '1.4.0'
|
|
repositories {
|
|
jcenter()
|
|
maven {
|
|
url 'https://maven.google.com/'
|
|
name 'Google'
|
|
}
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.0'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.16.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven {
|
|
url 'https://maven.google.com/'
|
|
name 'Google'
|
|
}
|
|
}
|
|
}
|
|
|
|
apply plugin: "com.vanniktech.android.junit.jacoco"
|