0.15.8-kotlin-2.1.0 #51

Merged
altavir merged 54 commits from dev into master 2024-12-09 09:49:38 +03:00
Showing only changes of commit a6a1ed4102 - Show all commits

View File

@ -1,3 +1,4 @@
plugins {
`java-gradle-plugin`
`kotlin-dsl`
@ -112,8 +113,18 @@ val emptySourcesJar by tasks.creating(Jar::class) {
archiveBaseName.set("empty")
}
mavenPublishing {
configure(
com.vanniktech.maven.publish.GradlePlugin(
javadocJar = com.vanniktech.maven.publish.JavadocJar.Dokka("dokkaHtml"),
sourcesJar = true,
)
)
project.publishing.publications.create("maven", MavenPublication::class.java) {
from(project.components.getByName("versionCatalog"))
}
val vcs = "https://git.sciprog.center/kscience/gradle-tools"
pom {
@ -167,8 +178,6 @@ mavenPublishing {
publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost.CENTRAL_PORTAL)
signAllPublications()
}
configure(com.vanniktech.maven.publish.VersionCatalog())
}
kotlin {