generated from DanySK/template-for-gradle-plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
154 lines (139 loc) · 4.44 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
@file:Suppress("OPT_IN_USAGE")
import org.apache.tools.ant.taskdefs.condition.Os
import org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION as KOTLIN_VERSION
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
`java-gradle-plugin`
alias(libs.plugins.dokka)
alias(libs.plugins.gitSemVer)
alias(libs.plugins.gradlePluginPublish)
alias(libs.plugins.jacoco.testkit)
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 = "io.github.zuccherosintattico"
description = "Simple Gradle plugin for automatic typescript build"
inner class ProjectInfo {
val longName = "Gradle plugin for typescript"
val website = "https://github.com/zucchero-sintattico/$name"
val vcsUrl = "$website.git"
val scm = "scm:git:$website.git"
val pluginImplementationClass = "$group.gradle.Typescript"
val tags = listOf("typescript", "compilation")
}
val info = ProjectInfo()
gitSemVer {
buildMetadataSeparator.set("-")
}
repositories {
mavenCentral()
}
multiJvm {
jvmVersionForCompilation.set(17)
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)
implementation(libs.turtle)
implementation(libs.compress)
}
// Enforce Kotlin version coherence
configurations.matching { it.name != "detekt" }.all {
resolutionStrategy.eachDependency {
if (requested.group == "org.jetbrains.kotlin" && requested.name.startsWith("kotlin")) {
useVersion(KOTLIN_VERSION)
because("All Kotlin modules should use the same version, and compiler uses $KOTLIN_VERSION")
}
}
}
kotlin {
target {
compilations.all {
kotlinOptions {
allWarningsAsErrors = true
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
}
}
}
}
inline fun <reified T : Task> Project.disableTrackStateOnWindows() {
tasks.withType<T>().configureEach {
doNotTrackState("Windows is a mess and JaCoCo does not work correctly")
}
}
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
disableTrackStateOnWindows<Test>()
disableTrackStateOnWindows<JacocoReport>()
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
dependsOn(tasks.generateJacocoTestKitProperties)
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)
group = "io.github.zucchero-sintattico"
repository("https://maven.pkg.github.com/zucchero-sintattico/${rootProject.name}".lowercase(), name = "github") {
user.set(System.getenv("GITHUB_ACTOR"))
password.set(System.getenv("GITHUB_TOKEN"))
}
publishing {
publications {
withType<MavenPublication> {
pom {
developers {
developer {
name.set("Zucchero Sintattico")
email.set("[email protected]")
url.set("https://zucchero-sintattico.github.io")
}
}
}
}
}
}
}
gradlePlugin {
plugins {
website.set(info.website)
vcsUrl.set(info.website) // vcsUrl.set(info.vcsUrl)
create("") {
id = "$group.${project.name}"
displayName = info.longName
description = project.description
implementationClass = info.pluginImplementationClass
tags.set(info.tags)
}
}
}