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 2024.10.30-2

2024.10.30-2

Created 31 October 2024.

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 "2024.10.30-2"
}

See also:

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