-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
101 lines (89 loc) · 2.38 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
import net.researchgate.release.ReleasePlugin
import se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask
plugins {
base
`maven-publish`
signing
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.ktlint) apply false
alias(libs.plugins.detekt)
alias(libs.plugins.release)
alias(libs.plugins.changelog)
alias(libs.plugins.dokka)
}
allprojects {
group = "com.ekino.oss.jcv"
repositories {
mavenCentral()
}
}
tasks {
register("printVersion") {
doLast {
println(project.version.toString())
}
}
register<GitChangelogTask>("gitChangelogTask") {
file = File("CHANGELOG.md")
templateContent = file("template_changelog.mustache").readText()
}
}
detekt {
buildUponDefaultConfig = true
config.setFrom("config/detekt.yml")
}
subprojects {
apply<MavenPublishPlugin>()
apply<ReleasePlugin>()
apply<SigningPlugin>()
publishing {
publications {
register<MavenPublication>("mavenJava") {
pom {
name = "JCV"
description = "JSON Content Validator (JCV) allows you to compare JSON contents with embedded validation."
url = "https://github.com/ekino/jcv"
licenses {
license {
name = "MIT License (MIT)"
url = "https://opensource.org/licenses/mit-license"
}
}
developers {
developer {
name = "Léo Millon"
email = "[email protected]"
organization = "ekino"
organizationUrl = "https://www.ekino.com/"
}
}
scm {
connection = "scm:git:git://github.com/ekino/jcv.git"
developerConnection = "scm:git:ssh://github.com:ekino/jcv.git"
url = "https://github.com/ekino/jcv"
}
organization {
name = "ekino"
url = "https://www.ekino.com/"
}
}
repositories {
maven {
val ossrhUrl: String? by project
val ossrhUsername: String? by project
val ossrhPassword: String? by project
url = uri(ossrhUrl ?: "")
credentials {
username = ossrhUsername
password = ossrhPassword
}
}
}
}
}
}
signing {
setRequired { gradle.taskGraph.hasTask("publish") }
sign(publishing.publications["mavenJava"])
}
}