64 lines
2.0 KiB
Groovy
64 lines
2.0 KiB
Groovy
|
apply plugin: 'maven-publish'
|
||
|
|
||
|
task javadocsJar(type: Jar) {
|
||
|
classifier = 'javadoc'
|
||
|
}
|
||
|
|
||
|
afterEvaluate {
|
||
|
project.publishing.publications.all {
|
||
|
// rename artifacts
|
||
|
groupId "${project.group}"
|
||
|
if (it.name.contains('kotlinMultiplatform')) {
|
||
|
artifactId = "${project.name}"
|
||
|
} else {
|
||
|
artifactId = "${project.name}-$name"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
publishing {
|
||
|
publications.all {
|
||
|
artifact javadocsJar
|
||
|
|
||
|
pom.withXml {
|
||
|
asNode().children().last() + {
|
||
|
resolveStrategy = Closure.DELEGATE_FIRST
|
||
|
|
||
|
description "Core library for PostsSystem"
|
||
|
name "PostsSystem Core"
|
||
|
url "https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore"
|
||
|
|
||
|
scm {
|
||
|
developerConnection "scm:git:[fetch=]https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore.git[push=]https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore.git"
|
||
|
url "https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore.git"
|
||
|
}
|
||
|
|
||
|
developers {
|
||
|
|
||
|
developer {
|
||
|
id "InsanusMokrassar"
|
||
|
name "Ovsiannikov Aleksei"
|
||
|
email "ovsyannikov.alexey95@gmail.com"
|
||
|
}
|
||
|
|
||
|
|
||
|
developer {
|
||
|
id "mi-ast"
|
||
|
name "Michail Astafiev"
|
||
|
email "astaf65@gmail.com"
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
licenses {
|
||
|
|
||
|
license {
|
||
|
name "Apache Software License 2.0"
|
||
|
url "https://git.insanusmokrassar.com/PostsSystem/PostsSystemCore/src/master/LICENSE"
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|