Search Gradle plugins

Version 1.0.8-1 (latest)

Created 05 November 2023.

shared catalog versions, dependencies and constants between project modules in json, yaml or toml format. Local or Remote file.

Using the plugins DSL:

plugins {
  id("com.tezov.plugin_project.catalog") version "1.0.8-1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.tezov:plugin_project:1.0.8-1")
  }
}

apply(plugin = "com.tezov.plugin_project.catalog")

Using the plugins DSL:

plugins {
  id "com.tezov.plugin_project.catalog" version "1.0.8-1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.tezov:plugin_project:1.0.8-1"
  }
}

apply plugin: "com.tezov.plugin_project.catalog"

Learn how to apply plugins to subprojects