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-8a45416

2023.09.21-8a45416

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-8a45416"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jamesward.kotlin-universe-catalog:kotlin-universe-catalog:2023.09.21-8a45416")
      }
    }
    
    apply(plugin = "com.jamesward.kotlin-universe-catalog")
  • Applying plugins to all subprojects .