core/publishing/api/publish.gradle

69 lines
2.2 KiB
Groovy
Raw Normal View History

2020-11-25 07:53:15 +00:00
apply plugin: 'maven-publish'
2020-07-30 09:28:11 +00:00
2020-11-25 07:53:15 +00:00
task javadocsJar(type: Jar) {
classifier = 'javadoc'
}
task sourceJar (type : Jar) {
classifier = 'sources'
2020-07-30 09:28:11 +00:00
}
2020-11-25 07:53:15 +00:00
afterEvaluate {
project.publishing.publications.all {
// rename artifacts
groupId "${project.group}"
2020-07-30 09:28:11 +00:00
if (it.name.contains('kotlinMultiplatform')) {
2020-11-25 07:53:15 +00:00
artifactId = "${project.name}"
artifact sourceJar
2020-07-30 09:28:11 +00:00
} else {
2020-11-25 07:53:15 +00:00
artifactId = "${project.name}-$name"
2020-07-30 09:28:11 +00:00
}
2020-11-25 07:53:15 +00:00
}
2020-07-30 09:28:11 +00:00
}
2020-11-25 07:53:15 +00:00
publishing {
publications.all {
artifact javadocsJar
pom {
description = "Publishing subsystem with necessary functionality related to publish mechanism"
name = "PostsSystem Core Publishing subsystem"
2020-11-25 08:08:45 +00:00
url = "https://git.inmo.dev/PostsSystem/Core/"
2020-11-25 07:53:15 +00:00
scm {
2020-11-25 08:08:45 +00:00
developerConnection = "scm:git:[fetch=]https://git.inmo.dev/PostsSystem/Core/.git[push=]https://git.inmo.dev/PostsSystem/Core/.git"
url = "https://git.inmo.dev/PostsSystem/Core/.git"
2020-11-25 07:53:15 +00:00
}
developers {
developer {
id = "InsanusMokrassar"
name = "Ovsiannikov Aleksei"
email = "ovsyannikov.alexey95@gmail.com"
}
}
licenses {
license {
name = "Apache Software License 2.0"
2020-11-25 08:08:45 +00:00
url = "https://git.inmo.dev/PostsSystem/Core/src/master/LICENSE"
2020-11-25 07:53:15 +00:00
}
}
}
repositories {
maven {
name = "bintray"
url = uri("https://api.bintray.com/maven/${project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')}/InsanusMokrassar/${project.name}/;publish=0;override=0")
credentials {
username = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')
password = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : System.getenv('BINTRAY_KEY')
}
}
}
}
}