update depdendencies

This commit is contained in:
2021-02-05 15:41:43 +06:00
parent 60dea2a518
commit e2fb8bf21e
3 changed files with 6 additions and 19 deletions

View File

@@ -3,22 +3,6 @@ apply plugin: 'maven-publish'
task javadocsJar(type: Jar) {
classifier = 'javadoc'
}
task sourceJar (type : Jar) {
classifier = 'sources'
}
afterEvaluate {
project.publishing.publications.all {
// rename artifacts
groupId "${project.group}"
if (it.name.contains('kotlinMultiplatform')) {
artifactId = "${project.name}"
artifact sourceJar
} else {
artifactId = "${project.name}-$name"
}
}
}
publishing {
publications.all {
@@ -73,4 +57,4 @@ publishing {
}
}
}
}