-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
42 lines (35 loc) · 1.18 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
42
plugins {
`java-gradle-plugin`
id("com.gradle.plugin-publish") version "1.2.1"
kotlin("jvm") version "1.9.23"
id("tech.harmonysoft.oss.gradle.release.paperwork") version "1.8.0"
}
group = "tech.harmonysoft"
version = "1.12.0"
kotlin {
jvmToolchain(8)
}
gradlePlugin {
website = "http://gradle-release-paperwork.oss.harmonysoft.tech/"
vcsUrl = "https://github.com/denis-zhdanov/gradle-release-paperwork"
plugins {
create("releasePaperworkPlugin") {
id = "tech.harmonysoft.oss.gradle.release.paperwork"
implementationClass = "tech.harmonysoft.oss.gradle.release.paperwork.GradleReleasePaperworkPlugin"
displayName = "gradle git release paperwork"
description = "handles release paperwork activities - release notes population, git tag creation, etc"
tags = listOf("git", "release")
}
}
}
repositories {
mavenCentral()
}
dependencies {
api("org.eclipse.jgit:org.eclipse.jgit:5.11.0.202103091610-r")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
testImplementation("org.assertj:assertj-core:3.25.3")
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}