-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle.kts
37 lines (32 loc) · 1016 Bytes
/
build.gradle.kts
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
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
buildscript {
repositories {
google()
mavenCentral()
maven { setUrl(com.datadog.gradle.Dependencies.Repositories.Gradle) }
mavenLocal()
}
dependencies {
classpath(libs.androidToolsPluginGradle)
classpath(libs.kotlinPluginGradle)
classpath(libs.dokkaPluginGradle)
// Uncomment to use the samples
// classpath(libs.datadogPluginGradle)
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { setUrl(com.datadog.gradle.Dependencies.Repositories.Jitpack) }
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}
// Empty task defined by one of our CI pipeline which does not apply here.
tasks.register("checkGeneratedFiles") {}