SDI/publish.gradle

70 lines
2.3 KiB
Groovy
Raw Normal View History

2021-01-20 06:02:49 +00:00
apply plugin: 'maven-publish'
2019-11-20 14:46:32 +00:00
2021-01-20 06:02:49 +00:00
task javadocsJar(type: Jar) {
classifier = 'javadoc'
}
task sourceJar (type : Jar) {
classifier = 'sources'
2019-11-20 14:46:32 +00:00
}
2021-01-20 06:02:49 +00:00
afterEvaluate {
project.publishing.publications.all {
// rename artifacts
groupId "${project.group}"
2020-01-19 08:07:11 +00:00
if (it.name.contains('kotlinMultiplatform')) {
2021-01-20 06:02:49 +00:00
artifactId = "${project.name}"
artifact sourceJar
2020-01-19 08:07:11 +00:00
} else {
2021-01-20 06:02:49 +00:00
artifactId = "${project.name}-$name"
2020-01-19 08:07:11 +00:00
}
2021-01-20 06:02:49 +00:00
}
2019-11-20 14:46:32 +00:00
}
2021-01-20 06:02:49 +00:00
publishing {
publications.all {
artifact javadocsJar
pom {
description = "Simple library for creating dependencies tree using Kotlin Serialization"
name = "Simple Dependency Injector"
url = "https://git.insanusmokrassar.com/InsanusMokrassar/SDI"
scm {
developerConnection = "scm:git:[fetch=]https://git.insanusmokrassar.com/InsanusMokrassar/SDI.git[push=]https://git.insanusmokrassar.com/InsanusMokrassar/SDI.git"
url = "https://git.insanusmokrassar.com/InsanusMokrassar/SDI.git"
}
developers {
developer {
id = "InsanusMokrassar"
name = "Ovsiannikov Aleksei"
email = "ovsyannikov.alexey95@gmail.com"
}
}
licenses {
license {
name = "Apache Software License 2.0"
url = "https://git.insanusmokrassar.com/PostsSystem/SDI/src/master/LICENSE"
}
}
}
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=1;override=1")
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')
}
}
}
}
}