mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-22 16:23:50 +00:00
update publish script
This commit is contained in:
parent
8702846216
commit
55aacb8753
@ -3,6 +3,9 @@ apply plugin: 'maven-publish'
|
|||||||
task javadocsJar(type: Jar) {
|
task javadocsJar(type: Jar) {
|
||||||
classifier = 'javadoc'
|
classifier = 'javadoc'
|
||||||
}
|
}
|
||||||
|
task sourceJar (type : Jar) {
|
||||||
|
classifier = 'sources'
|
||||||
|
}
|
||||||
|
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
project.publishing.publications.all {
|
project.publishing.publications.all {
|
||||||
@ -10,6 +13,7 @@ afterEvaluate {
|
|||||||
groupId "${project.group}"
|
groupId "${project.group}"
|
||||||
if (it.name.contains('kotlinMultiplatform')) {
|
if (it.name.contains('kotlinMultiplatform')) {
|
||||||
artifactId = "${project.name}"
|
artifactId = "${project.name}"
|
||||||
|
artifact sourceJar
|
||||||
} else {
|
} else {
|
||||||
artifactId = "${project.name}-$name"
|
artifactId = "${project.name}-$name"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user