all.shared.gradle.base-style-config-wrapper
Owner: Gonzalo Müller Bravo
A wrapper for 'base-style-config' configurations
https://github.com/gmullerb/base-style-config-wrapper/
Sources: https://github.com/gmullerb/base-style-config-wrapper/
Version 3.0.1 (latest)
3.0.1
Created 15 August 2019.
A wrapper for 'base-style-config' configurations
Using the plugins DSL:
plugins {
id("all.shared.gradle.base-style-config-wrapper") version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.all.shared.gradle.base-style-config-wrapper:base-style-config-wrapper:3.0.1")
}
}
apply(plugin = "all.shared.gradle.base-style-config-wrapper")
Using the plugins DSL:
plugins {
id "all.shared.gradle.base-style-config-wrapper" version "3.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.all.shared.gradle.base-style-config-wrapper:base-style-config-wrapper:3.0.1"
}
}
apply plugin: "all.shared.gradle.base-style-config-wrapper"