73 lines
2.0 KiB
Groovy
73 lines
2.0 KiB
Groovy
|
apply plugin: 'maven-publish'
|
||
|
apply plugin: 'signing'
|
||
|
|
||
|
task sourcesJar(type: Jar) {
|
||
|
from sourceSets.main.allSource
|
||
|
classifier = 'sources'
|
||
|
}
|
||
|
|
||
|
task javadocJar(type: Jar) {
|
||
|
from javadoc
|
||
|
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 {
|
||
|
maven(MavenPublication) {
|
||
|
from components.java
|
||
|
artifact javadocJar
|
||
|
artifact sourcesJar
|
||
|
|
||
|
pom.withXml {
|
||
|
asNode().children().last() + {
|
||
|
resolveStrategy = Closure.DELEGATE_FIRST
|
||
|
|
||
|
description "Exposed realisation for PostsSystem Core"
|
||
|
name "PostsSystem Core Exposed realization"
|
||
|
url "https://git.insanusmokrassar.com/PostsSystem/Core/"
|
||
|
|
||
|
scm {
|
||
|
developerConnection "scm:git:[fetch=]https://git.insanusmokrassar.com/PostsSystem/Core/.git[push=]https://git.insanusmokrassar.com/PostsSystem/Core/.git"
|
||
|
url "https://git.insanusmokrassar.com/PostsSystem/Core/.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/Core/src/master/LICENSE"
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
signing {
|
||
|
useGpgCmd()
|
||
|
sign publishing.publications.maven
|
||
|
}
|