-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle.kts
41 lines (35 loc) · 1.14 KB
/
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
plugins {
`java-gradle-plugin`
kotlin("jvm") version "1.9.23"
id("com.gradle.plugin-publish") version "1.2.1"
id("tech.harmonysoft.oss.gradle.release.paperwork") version "1.10.0"
}
group = "tech.harmonysoft"
version = "1.19.0"
kotlin {
jvmToolchain(8)
}
gradlePlugin {
website = "https://gradle-dist.oss.harmonysoft.tech/"
vcsUrl = "https://github.com/denis-zhdanov/custom-gradle-dist-gradle-plugin"
plugins {
create("gradleDist") {
id = "tech.harmonysoft.oss.custom-gradle-dist-plugin"
implementationClass = "tech.harmonysoft.oss.gradle.dist.CustomGradleDistributionPlugin"
displayName = "Custom Gradle Wrapper construction plugin"
description = "Helps setting up custom Gradle wrapper construction"
tags = listOf("wrapper")
}
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
testImplementation("org.assertj:assertj-core:3.25.3")
testImplementation("tech.harmonysoft:harmonysoft-common-test:1.92.0")
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}