generated from DanySK/template-for-gradle-plugins
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
134 lines (120 loc) · 3.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@file:Suppress("UnstableApiUsage")
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
`java-gradle-plugin`
alias(libs.plugins.dokka)
alias(libs.plugins.gitSemVer)
alias(libs.plugins.gradlePluginPublish)
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.qa)
alias(libs.plugins.publishOnCentral)
alias(libs.plugins.multiJvmTesting)
alias(libs.plugins.taskTree)
}
/*
* Project information
*/
group = "org.danilopianini"
description = "A Gradle plugin enforcing pre-commit and commit-msg Git hooks configuration. Conventional-commits-ready."
inner class ProjectInfo {
val longName = "Gradle pre-commit Git Hooks"
val website = "https://github.com/DanySK/$name"
val vcsUrl = "$website.git"
val scm = "scm:git:$website.git"
val pluginImplementationClass = "$group.gradle.git.hooks.GradleGitHooksPlugin"
val tags = listOf("git", "hook", "git hooks", "conventional commits")
}
val info = ProjectInfo()
gitSemVer {
buildMetadataSeparator.set("-")
}
repositories {
mavenCentral()
}
multiJvm {
maximumSupportedJvmVersion.set(latestJavaSupportedByGradle)
}
dependencies {
api(gradleApi())
api(gradleKotlinDsl())
api(kotlin("stdlib-jdk8"))
testImplementation(gradleTestKit())
testImplementation(libs.konf.yaml)
testImplementation(libs.classgraph)
testImplementation(libs.bundles.kotlin.testing)
}
sourceSets {
main {
resources {
srcDir("src/main/sh")
}
}
}
tasks.withType<KotlinCompilationTask<*>>().configureEach {
compilerOptions {
allWarningsAsErrors = true
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
}
}
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
showStandardStreams = true
showCauses = true
showStackTraces = true
events(
*org.gradle.api.tasks.testing.logging.TestLogEvent
.values(),
)
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
}
signing {
if (System.getenv()["CI"].equals("true", ignoreCase = true)) {
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKey, signingPassword)
}
}
/*
* Publication on Maven Central and the Plugin portal
*/
publishOnCentral {
projectLongName.set(info.longName)
projectDescription.set(description ?: TODO("Missing description"))
projectUrl.set(info.website)
scmConnection.set(info.scm)
repository("https://maven.pkg.github.com/DanySK/${rootProject.name}".lowercase(), name = "github") {
user.set("danysk")
password.set(System.getenv("GITHUB_TOKEN"))
}
publishing {
publications {
withType<MavenPublication> {
pom {
developers {
developer {
name.set("Danilo Pianini")
email.set("[email protected]")
url.set("http://www.danilopianini.org/")
}
}
}
}
}
}
}
gradlePlugin {
website.set(info.website)
vcsUrl.set(info.vcsUrl)
plugins {
create("gitHooks") {
id = "$group.${project.name}"
displayName = info.longName
description = project.description
implementationClass = info.pluginImplementationClass
tags.set(info.tags)
}
}
}