-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
43 lines (40 loc) · 1.09 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
43 lines (40 loc) · 1.09 KB
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
plugins {
base
alias(libs.plugins.jreleaser)
}
group = "de.siegmar"
version = "4.4.0-SNAPSHOT" // x-release-please-version
subprojects {
group = rootProject.group
version = rootProject.version
}
jreleaser {
project {
gitRootSearch.set(true)
name.set("FastCSV")
description.set("Fast, lightweight, RFC 4180 compliant CSV library for Java with zero dependencies.")
authors.set(listOf("Oliver Siegmar"))
license.set("MIT")
links {
homepage.set("https://fastcsv.org")
license.set("https://opensource.org/licenses/MIT")
}
}
signing {
active.set(org.jreleaser.model.Active.ALWAYS)
pgp {
armored.set(true)
}
}
deploy {
maven {
mavenCentral {
create("sonatype") {
active.set(org.jreleaser.model.Active.ALWAYS)
url.set("https://central.sonatype.com/api/v1/publisher")
stagingRepositories.add("lib/build/staging-deploy")
}
}
}
}
}