-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
40 lines (35 loc) · 937 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
buildscript {
ext.kotlinVersion = "1.6.21"
ext.jacocoVersion = "0.8.8"
ext.androidJunit5Version = "1.8.2.0"
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "de.mannodermaus.gradle.plugins:android-junit5:$androidJunit5Version"
classpath "org.jacoco:org.jacoco.core:$jacocoVersion"
}
}
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}
wrapper {
gradleVersion = "7.4.2"
distributionType = Wrapper.DistributionType.ALL
}
allprojects {
repositories {
mavenCentral()
google()
maven { url "https://jitpack.io" }
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "${rootDir}/scripts/publish.gradle"