-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
45 lines (38 loc) · 1.26 KB
/
build.gradle.kts
File metadata and controls
45 lines (38 loc) · 1.26 KB
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
41
42
43
44
45
plugins {
`kotlin-dsl`
`maven-publish`
id("com.gradle.plugin-publish") version "2.0.0"
}
group = properties["GROUP"].toString()
version = properties["PLUGIN_VERSION"].toString()
dependencies {
compileOnly(gradleApi())
compileOnly(libs.android.gradle.plugin)
testImplementation(kotlin("test"))
testImplementation("org.mockito:mockito-core:5.12.0")
testImplementation("org.mockito.kotlin:mockito-kotlin:5.2.1")
testImplementation("com.squareup.okio:okio:3.6.0")
testImplementation("io.mockk:mockk:1.13.10")
testImplementation("com.google.truth:truth:1.4.2")
}
gradlePlugin {
plugins {
website = "https://rollbar.com/"
vcsUrl = "https://github.com/rollbar/rollbar-gradle-plugin"
create("rollbar-android") {
id = properties["PLUGIN_NAME"].toString()
displayName = "Rollbar gradle plugin"
description = "Gradle plugin for uploading Android ProGuard/R8 mapping files to Rollbar for deobfuscation."
tags = listOf("upload", "mappings", "android", "Rollbar")
implementationClass = properties["PLUGIN_NAME_CLASS"].toString()
}
}
}
sourceSets {
named("test") {
kotlin.srcDirs("src/test/kotlin")
}
}
tasks.test {
useJUnitPlatform()
}