io.github.art.settings
Owner: Anton Bashirov
A plugin that helps you to configure JVM projects
https://github.com/art-community/application-gradle-plugin
Sources: https://github.com/art-community/application-gradle-plugin.git
Version 1.0.102
1.0.102
Created 05 February 2020.
A plugin that helps you to configure JVM projects
Using the plugins DSL:
plugins {
id("io.github.art.settings") version "1.0.102"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.art:application-gradle-plugin:1.0.102")
}
}
apply(plugin = "io.github.art.settings")
Using the plugins DSL:
plugins {
id "io.github.art.settings" version "1.0.102"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.art:application-gradle-plugin:1.0.102"
}
}
apply plugin: "io.github.art.settings"