-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
49 lines (37 loc) · 1005 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
41
42
43
44
45
46
47
48
49
plugins {
kotlin("jvm") version "1.9.23"
id("java-gradle-plugin")
id("com.gradle.plugin-publish") version "1.2.1"
}
gradlePlugin {
website.set("https://github.com/lg-labs-pentagon/lg5-jvm-checkstyle-plugin")
vcsUrl.set("https://github.com/lg-labs-pentagon/lg5-jvm-checkstyle-plugin")
plugins {
create("gradleCodeStylePluginExample") {
id = "io.github.lg5.jvm.checkstyle.code"
displayName = "Gradle Plugin Code Style"
description = "Predefined Checkstyle and PMD rules"
implementationClass = "io.github.lg5.jvm.checkstyle.code.CodingRulesGradlePlugin"
tags.set(listOf("codestyle", "checkstyle", "pmd"))
}
}
}
dependencies {
testImplementation(libs.jupiter.root)
testRuntimeOnly(libs.jupiter.launcher)
}
tasks.test {
useJUnitPlatform()
}
repositories {
mavenCentral()
}
repositories {
mavenCentral()
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}