Browse Source

Update plugin portal plugin & metadata (#1375)

* Update Gradle plugin publishing plugin

0.17.0 increases the maximum length
of plugin version strings to 50 characters

* Update website on plugin portal
pull/1386/head
Alexey Tsvetkov 3 years ago committed by GitHub
parent
commit
a464c14130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gradle-plugins/build.gradle.kts
  2. 2
      gradle-plugins/buildSrc/src/main/kotlin/BuildProperties.kt

2
gradle-plugins/build.gradle.kts

@ -3,7 +3,7 @@ import com.gradle.publish.PluginBundleExtension
plugins {
// __KOTLIN_COMPOSE_VERSION__
kotlin("jvm") version "1.5.10" apply false
id("com.gradle.plugin-publish") version "0.16.0" apply false
id("com.gradle.plugin-publish") version "0.17.0" apply false
}
subprojects {

2
gradle-plugins/buildSrc/src/main/kotlin/BuildProperties.kt

@ -9,7 +9,7 @@ import org.gradle.api.Project
object BuildProperties {
const val name = "JetBrains Compose Plugin"
const val group = "org.jetbrains.compose"
const val website = "https://jetbrains.org/compose"
const val website = "https://www.jetbrains.com/lp/compose/"
const val vcs = "https://github.com/JetBrains/compose-jb"
fun composeVersion(project: Project): String =
System.getenv("COMPOSE_GRADLE_PLUGIN_COMPOSE_VERSION")

Loading…
Cancel
Save