-
Notifications
You must be signed in to change notification settings - Fork 4
/
publish.gradle.kts
87 lines (72 loc) · 2.25 KB
/
publish.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
apply(plugin = "java")
apply(plugin = "java-library")
apply(plugin = "maven-publish")
apply(plugin = "signing")
repositories {
mavenCentral()
}
val signingKey: String? by project
val signingPassword: String? by project
fun Project.publishing(action: PublishingExtension.() -> Unit) =
configure(action)
fun Project.signing(configure: SigningExtension.() -> Unit): Unit =
configure(configure)
fun Project.java(configure: JavaPluginExtension.() -> Unit): Unit =
configure(configure)
val publications: PublicationContainer = (extensions.getByName("publishing") as PublishingExtension).publications
signing {
useGpgCmd()
if (signingKey != null && signingPassword != null) {
@Suppress("UnstableApiUsage")
useInMemoryPgpKeys(signingKey, signingPassword)
}
if (Ci.isRelease) {
sign(publications)
}
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
repositories {
maven {
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
name = "deploy"
url = if (Ci.isRelease) releasesRepoUrl else snapshotsRepoUrl
credentials {
username = java.lang.System.getenv("OSSRH_USERNAME") ?: ""
password = java.lang.System.getenv("OSSRH_PASSWORD") ?: ""
}
}
}
publications {
register("mavenJava", MavenPublication::class) {
from(components["java"])
pom {
name.set("kotest-extensions-spring")
description.set("Kotest extension for Spring")
url.set("http://www.github.com/kotest/kotest-extensions-spring")
scm {
connection.set("scm:git:http://www.github.com/kotest/kotest-extensions-spring")
developerConnection.set("scm:git:http://github.com/sksamuel")
url.set("http://www.github.com/kotest/kotest-extensions-spring")
}
licenses {
license {
name.set("The Apache 2.0 License")
url.set("https://opensource.org/licenses/Apache-2.0")
}
}
developers {
developer {
id.set("sksamuel")
name.set("Stephen Samuel")
email.set("[email protected]")
}
}
}
}
}
}