-
Notifications
You must be signed in to change notification settings - Fork 1
/
publishing.gradle.kts
114 lines (94 loc) · 3.95 KB
/
publishing.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
/*
* Copyright 2021 Paul Rybitskyi, [email protected]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply(plugin = PLUGIN_MAVEN_PUBLISH)
apply(plugin = PLUGIN_SIGNING)
apply(plugin = PLUGIN_DOKKA)
project.group = publishingConfig.artifactGroupId
project.version = publishingConfig.artifactVersion
val sourcesJar by tasks.registering(Jar::class) {
archiveClassifier.set("sources")
if (project.plugins.hasPlugin(PLUGIN_ANDROID_LIBRARY)) {
val libExt = checkNotNull(project.extensions.findByType(com.android.build.gradle.LibraryExtension::class.java))
val libMainSourceSet = libExt.sourceSets.getByName("main")
from(libMainSourceSet.java.srcDirs)
} else {
val sourceSetExt = checkNotNull(project.extensions.findByType(SourceSetContainer::class.java))
val mainSourceSet = sourceSetExt.getByName("main")
from(mainSourceSet.java.srcDirs)
}
}
val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
val dokkaJavadocTask = tasks.getByName("dokkaJavadoc")
from(dokkaJavadocTask)
dependsOn(dokkaJavadocTask)
}
afterEvaluate {
configure<PublishingExtension> {
publications {
create<MavenPublication>(publishingConfig.mavenPublicationName) {
groupId = publishingConfig.artifactGroupId
artifactId = publishingConfig.artifactName
version = publishingConfig.artifactVersion
if (project.plugins.hasPlugin(PLUGIN_ANDROID_LIBRARY)) {
from(components["release"])
} else {
from(components["java"])
}
artifact(sourcesJar.get())
artifact(javadocJar.get())
pom {
name.set(publishingConfig.artifactName)
description.set(publishingConfig.artifactDescription)
url.set(publishingConfig.artifactWebsite)
licenses {
license {
name.set(publishingConfig.licenseName)
url.set(publishingConfig.licenseUrl)
}
}
developers {
developer {
id.set(publishingConfig.developerId)
name.set(publishingConfig.developerName)
email.set(publishingConfig.developerEmail)
}
}
scm {
connection.set(publishingConfig.gitUrl)
developerConnection.set(publishingConfig.gitUrl)
url.set(publishingConfig.siteUrl)
}
}
}
}
repositories {
maven {
name = publishingConfig.hostRepoName
url = uri(publishingConfig.hostRepoUrl)
credentials {
username = property("SONATYPE_NEXUS_USERNAME", System.getenv("SONATYPE_NEXUS_USERNAME"))
password = property("SONATYPE_NEXUS_PASSWORD", System.getenv("SONATYPE_NEXUS_PASSWORD"))
}
}
}
}
configure<SigningExtension> {
val pubExt = checkNotNull(extensions.findByType(PublishingExtension::class.java))
val publication = pubExt.publications[publishingConfig.mavenPublicationName]
sign(publication)
}
}