com.tezov.plugin_project.catalog
Owner: tezov
user friendly tool to share catalog of constant between project
https://github.com/tezov/plugin_projet
Sources: https://github.com/tezov/plugin_projet
Version 1.0.8-1 (latest)
1.0.8-1
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"