com.github.m4gshm.cds
Owner: Bulgakov Alexander
helper for generating and using shared classes archive in your applications.
https://github.com/m4gshm/cds-gradle-plugin
Sources: https://github.com/m4gshm/cds-gradle-plugin
Version 0.0.3 (latest)
0.0.3
Created 08 August 2021.
helper for generating and using shared classes archive in your applications.
Using the plugins DSL:
plugins {
id("com.github.m4gshm.cds") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.m4gshm.cds.gradle:cds-gradle-plugin:0.0.3")
}
}
apply(plugin = "com.github.m4gshm.cds")
Using the plugins DSL:
plugins {
id "com.github.m4gshm.cds" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.m4gshm.cds.gradle:cds-gradle-plugin:0.0.3"
}
}
apply plugin: "com.github.m4gshm.cds"