Search Gradle plugins

com.jamesward.kotlin-universe-catalog

Gradle convention plugin that defines version catalogs for the universe of Kotlin Gradle plugins and libraries

https://github.com/jamesward/kotlin-universe-catalog

Sources: https://github.com/jamesward/kotlin-universe-catalog

Version 2023.09.21-987b6c1

Created 21 September 2023.

Gradle convention plugin that defines version catalogs for the universe of Kotlin Gradle plugins and libraries

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jamesward.kotlin-universe-catalog") version "2023.09.21-987b6c1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.jamesward.kotlin-universe-catalog:com.jamesward.kotlin-universe-catalog.gradle.plugin:2023.09.21-987b6c1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.jamesward.kotlin-universe-catalog")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jamesward.kotlin-universe-catalog:com.jamesward.kotlin-universe-catalog.gradle.plugin:2023.09.21-987b6c1")
      }
    }
    
    apply(plugin = "com.jamesward.kotlin-universe-catalog")
  • Applying plugins to all subprojects .