-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
80 lines (70 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
import net.researchgate.release.ReleasePlugin
plugins {
base
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.dokka) apply false
alias(libs.plugins.kotlin.quality) apply false
alias(libs.plugins.researchgate.release)
}
allprojects {
group = "com.ekino.oss.jcv-db"
repositories {
mavenCentral()
}
}
tasks.create("printVersion") {
doLast {
val version: String by project
println(version)
}
}
subprojects {
apply<MavenPublishPlugin>()
apply<ReleasePlugin>()
configure<PublishingExtension> {
publications {
create<MavenPublication>("mavenJava") {
pom {
name = "JCV-DB"
description = "JSON Content Validator for database (JCV-DB)."
url = "https://github.com/ekino/jcv-db"
licenses {
license {
name = "MIT License (MIT)"
url = "https://opensource.org/licenses/mit-license"
}
}
developers {
developer {
name = "Nicolas Gunther"
email = "[email protected]"
organization = "ekino"
organizationUrl = "https://www.ekino.com/"
}
}
scm {
connection = "scm:git:git://github.com/ekino/jcv-db.git"
developerConnection = "scm:git:ssh://github.com:ekino/jcv-db.git"
url = "https://github.com/ekino/jcv-db"
}
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
}
}
}
}
}
}
}