generated from detekt/detekt-custom-rule-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
40 lines (32 loc) · 991 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
38
39
40
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.6.21"
`maven-publish`
}
repositories {
mavenCentral()
}
dependencies {
compileOnly("io.gitlab.arturbosch.detekt:detekt-api:1.20.0")
testImplementation("io.gitlab.arturbosch.detekt:detekt-test:1.20.0")
testImplementation("com.google.truth:truth:1.1.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
systemProperty("junit.jupiter.testinstance.lifecycle.default", "per_class")
systemProperty("compile-snippet-tests", project.hasProperty("compile-test-snippets"))
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
groupId = "com.github.dev-gvs"
artifactId = "detekt-rules"
version = "1.0.1"
}
}
}