forked from cbeust/jcommander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
172 lines (152 loc) · 4.89 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
object This {
val version = "2.1"
val artifactId = "jcommander"
val groupId = "org.jcommander"
val description = "Command line parsing library for Java"
val url = "https://jcommander.org"
val scm = "github.com/cbeust/jcommander"
// Should not need to change anything below
val issueManagementUrl = "https://$scm/issues"
}
val kotlinVersion = "1.3.50"
allprojects {
group = This.groupId
version = This.version
apply<MavenPublishPlugin>()
tasks.withType<Javadoc> {
options {
quiet()
// outputLevel = JavadocOutputLevel.QUIET
// jFlags = listOf("-Xdoclint:none", "foo")
// "-quiet"
}
}
}
val kotlinVer by extra { kotlinVersion }
buildscript {
repositories {
mavenCentral()
maven { setUrl("https://plugins.gradle.org/m2") }
}
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
repositories {
mavenCentral()
maven { setUrl("https://plugins.gradle.org/m2") }
}
plugins {
java
`java-library`
`maven-publish`
signing
id("biz.aQute.bnd.builder") version "5.1.2"
}
tasks {
jar {
manifest {
attributes(
mapOf(
"Bundle-Description" to "A Java library to parse command line options",
"Bundle-License" to "http://www.apache.org/licenses/LICENSE-2.0.txt",
"Bundle-Name" to "com.beust.jcommander",
"Export-Package" to "*;-split-package:=merge-first;-noimport:=true"
)
)
}
}
}
dependencies {
listOf("org.testng:testng:7.0.0", "com.fasterxml.jackson.core:jackson-core:2.13.1",
"com.fasterxml.jackson.core:jackson-annotations:2.13.1")
.forEach { testImplementation(it) }
}
tasks.withType<JavaCompile> {
options.compilerArgs.addAll(listOf("--add-exports", "java.base/sun.reflect.annotation=ALL-UNNAMED"))
}
tasks.withType<Test> {
jvmArgs = listOf("--add-exports", "java.base/sun.reflect.annotation=ALL-UNNAMED")
useTestNG()
}
//
// Releases:
// ./gradlew publish (to Sonatype, then go to https://s01.oss.sonatype.org/index.html#stagingRepositories to publish)
// Make sure that ~/.gradle/gradle.properties:
// signing.keyId=XXXXXXXX
// signing.password=
// signing.secretKeyRingFile=../../.gnupg/secring.gpg
// lists a key that's listed in the keyring
// (gpg --list-keys, last eight digits of the key)
//
val sourcesJar by tasks.creating(Jar::class) {
group = JavaBasePlugin.DOCUMENTATION_GROUP
description = "Assembles sources JAR"
archiveClassifier.set("sources")
from(sourceSets.getByName("main").allSource)
}
val javadocJar by tasks.creating(Jar::class) {
from(tasks.javadoc)
archiveClassifier.set("javadoc")
}
with(publishing) {
publications {
create<MavenPublication>("custom") {
groupId = This.groupId
artifactId = This.artifactId
version = project.version.toString()
afterEvaluate {
from(components["java"])
}
suppressAllPomMetadataWarnings()
artifact(sourcesJar)
artifact(javadocJar)
pom {
name.set(This.artifactId)
description.set(This.description)
url.set(This.url)
licenses {
license {
name.set("Apache License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
issueManagement {
system.set("Github")
url.set(This.issueManagementUrl)
}
developers {
developer {
id.set("cbeust")
name.set("Cedric Beust")
email.set("cedric@beust.com")
}
}
scm {
connection.set("scm:git:git://${This.scm}.git")
url.set("https://${This.scm}")
}
}
}
}
repositories {
maven {
name = "sonatype"
url = if (This.version.contains("SNAPSHOT"))
uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") else
uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
credentials {
username = project.findProperty("sonatypeUser")?.toString() ?: System.getenv("SONATYPE_USER")
password = project.findProperty("sonatypePassword")?.toString() ?: System.getenv("SONATYPE_PASSWORD")
}
}
maven {
name = "myRepo"
url = uri(layout.buildDirectory.dir("repo"))
}
}
}
with(signing) {
sign(publishing.publications.getByName("custom"))
}