|
|
|
import com.gradle.publish.PluginBundleExtension
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
val kotlinVersion = "1.7.20"
|
|
|
|
kotlin("jvm") version kotlinVersion apply false
|
|
|
|
kotlin("plugin.serialization") version kotlinVersion apply false
|
|
|
|
id("com.gradle.plugin-publish") version "0.17.0" apply false
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
group = BuildProperties.group
|
|
|
|
version = BuildProperties.deployVersion(project)
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
mavenLocal()
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins.withId("java") {
|
|
|
|
configureIfExists<JavaPluginExtension> {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
|
|
|
withJavadocJar()
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins.withId("org.jetbrains.kotlin.jvm") {
|
|
|
|
tasks.withType(KotlinJvmCompile::class).configureEach {
|
|
|
|
// must be set to a language version of the kotlin compiler & runtime,
|
|
|
|
// which is bundled to the oldest supported Gradle
|
|
|
|
kotlinOptions.languageVersion = "1.5"
|
|
|
|
kotlinOptions.apiVersion = "1.5"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins.withId("maven-publish") {
|
|
|
|
configureIfExists<PublishingExtension> {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = "ComposeRepo"
|
|
|
|
setUrl(System.getenv("COMPOSE_REPO_URL"))
|
|
|
|
credentials {
|
|
|
|
username = System.getenv("COMPOSE_REPO_USERNAME")
|
|
|
|
password = System.getenv("COMPOSE_REPO_KEY")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
maven {
|
|
|
|
name = "LocalDir"
|
|
|
|
url = rootProject.buildDir.resolve("repo").toURI()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
val publicationConfig = mavenPublicationConfig
|
|
|
|
val gradlePluginConfig = gradlePluginConfig
|
|
|
|
|
|
|
|
if (publicationConfig != null) {
|
|
|
|
if (gradlePluginConfig != null) {
|
|
|
|
// pluginMaven is a default publication created by java-gradle-plugin
|
|
|
|
// https://github.com/gradle/gradle/issues/10384
|
|
|
|
configureMavenPublication("pluginMaven", publicationConfig)
|
|
|
|
configureGradlePlugin(publicationConfig, gradlePluginConfig)
|
|
|
|
} else {
|
|
|
|
configureMavenPublication("maven", publicationConfig) {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun Project.configureMavenPublication(
|
|
|
|
publicationName: String,
|
|
|
|
config: MavenPublicationConfigExtension,
|
|
|
|
customize: MavenPublication.() -> Unit = {}
|
|
|
|
) {
|
|
|
|
// maven publication for plugin
|
|
|
|
configureIfExists<PublishingExtension> {
|
|
|
|
publications.create<MavenPublication>(publicationName) {
|
|
|
|
artifactId = config.artifactId
|
|
|
|
pom {
|
|
|
|
name.set(config.displayName)
|
|
|
|
description.set(config.description)
|
|
|
|
url.set(BuildProperties.website)
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name.set("The Apache License, Version 2.0")
|
|
|
|
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
customize()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fun Project.configureGradlePlugin(
|
|
|
|
publicationConfig: MavenPublicationConfigExtension,
|
|
|
|
gradlePluginConfig: GradlePluginConfigExtension
|
|
|
|
) {
|
|
|
|
// metadata for gradle plugin portal (relates to pluginBundle extension block from com.gradle.plugin-publish)
|
|
|
|
configureIfExists<PluginBundleExtension> {
|
|
|
|
vcsUrl = BuildProperties.vcs
|
|
|
|
website = BuildProperties.website
|
|
|
|
description = publicationConfig.description
|
|
|
|
tags = gradlePluginConfig.pluginPortalTags
|
|
|
|
}
|
|
|
|
|
|
|
|
// gradle plugin definition (relates to gradlePlugin extension block from java-gradle-plugin)
|
|
|
|
configureIfExists<GradlePluginDevelopmentExtension> {
|
|
|
|
plugins {
|
|
|
|
create("gradlePlugin") {
|
|
|
|
id = gradlePluginConfig.pluginId
|
|
|
|
displayName = publicationConfig.displayName
|
|
|
|
description = publicationConfig.description
|
|
|
|
implementationClass = gradlePluginConfig.implementationClass
|
|
|
|
version = project.version
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("publishToMavenLocal") {
|
|
|
|
for (subproject in subprojects) {
|
|
|
|
dependsOn(subproject.tasks.named("publishToMavenLocal"))
|
|
|
|
}
|
|
|
|
}
|