You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.3 KiB
138 lines
3.3 KiB
apply plugin: 'maven-publish'
|
|
apply plugin: 'signing'
|
|
apply plugin: 'org.jetbrains.dokka'
|
|
|
|
def dokkaConfiguration = {
|
|
outputDirectory.set(file("$rootDir/docs/2.x"))
|
|
|
|
dokkaSourceSets {
|
|
configureEach {
|
|
reportUndocumented.set(false)
|
|
skipDeprecated.set(true)
|
|
jdkVersion.set(8)
|
|
perPackageOption {
|
|
matchingRegex.set("com\\.squareup.okio.*")
|
|
suppress.set(true)
|
|
}
|
|
perPackageOption {
|
|
matchingRegex.set("okio\\.internal.*")
|
|
suppress.set(true)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dokkaGfm.configure(dokkaConfiguration)
|
|
dokkaHtml.configure(dokkaConfiguration)
|
|
|
|
def rootRelativePath(path) {
|
|
return rootProject.file(path).toString().replace('\\', '/')
|
|
}
|
|
|
|
dokkaHtml.pluginsMapConfiguration.set([
|
|
"org.jetbrains.dokka.base.DokkaBase": """{ "customStyleSheets": ["${rootRelativePath("docs/css/dokka-logo.css")}"], "customAssets" : ["${rootRelativePath("docs/images/logo-square.png")}"]}"""
|
|
])
|
|
|
|
def isReleaseBuild() {
|
|
return VERSION_NAME.contains("SNAPSHOT") == false
|
|
}
|
|
|
|
def getReleaseRepositoryUrl() {
|
|
return hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL :
|
|
"https://oss.sonatype.org/service/local/staging/deploy/maven2/"
|
|
}
|
|
|
|
def getSnapshotRepositoryUrl() {
|
|
return hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL :
|
|
"https://oss.sonatype.org/content/repositories/snapshots/"
|
|
}
|
|
|
|
def getRepositoryUsername() {
|
|
return hasProperty('SONATYPE_NEXUS_USERNAME') ? SONATYPE_NEXUS_USERNAME : ""
|
|
}
|
|
|
|
def getRepositoryPassword() {
|
|
return hasProperty('SONATYPE_NEXUS_PASSWORD') ? SONATYPE_NEXUS_PASSWORD : ""
|
|
}
|
|
|
|
task emptySourcesJar(type: Jar) {
|
|
classifier = 'sources'
|
|
}
|
|
|
|
task javadocsJar(type: Jar, dependsOn: dokkaGfm) {
|
|
classifier = 'javadoc'
|
|
from dokkaGfm.outputDirectory
|
|
}
|
|
|
|
signing {
|
|
required { isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives") }
|
|
sign(publishing.publications)
|
|
}
|
|
|
|
publishing {
|
|
publications.all {
|
|
artifact javadocsJar
|
|
|
|
pom.withXml {
|
|
def root = asNode()
|
|
|
|
root.children().last() + {
|
|
resolveStrategy = Closure.DELEGATE_FIRST
|
|
|
|
description POM_DESCRIPTION
|
|
name POM_NAME
|
|
url POM_URL
|
|
licenses {
|
|
license {
|
|
name POM_LICENCE_NAME
|
|
url POM_LICENCE_URL
|
|
distribution POM_LICENCE_DIST
|
|
}
|
|
}
|
|
scm {
|
|
url POM_SCM_URL
|
|
connection POM_SCM_CONNECTION
|
|
developerConnection POM_SCM_DEV_CONNECTION
|
|
}
|
|
developers {
|
|
developer {
|
|
id POM_DEVELOPER_ID
|
|
name POM_DEVELOPER_NAME
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Use default artifact name for the JVM target
|
|
publications {
|
|
kotlinMultiplatform {
|
|
artifactId = POM_ARTIFACT_ID + '-multiplatform'
|
|
}
|
|
jvm {
|
|
artifactId = POM_ARTIFACT_ID
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
publications.getByName('kotlinMultiplatform') {
|
|
// Source jars are only created for platforms, not the common artifact.
|
|
artifact emptySourcesJar
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url isReleaseBuild() ? getReleaseRepositoryUrl() : getSnapshotRepositoryUrl()
|
|
credentials {
|
|
username getRepositoryUsername()
|
|
password getRepositoryPassword()
|
|
}
|
|
}
|
|
maven {
|
|
name 'test'
|
|
url "file://${rootProject.buildDir}/localMaven"
|
|
}
|
|
}
|
|
}
|