ru.art.project
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.12 (latest)
1.12
Created 05 August 2019.
A plugin that helps you to configure JVM projects
Using the plugins DSL:
plugins {
id("ru.art.project") version "1.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.art:application-gradle-plugin:1.12")
}
}
apply(plugin = "ru.art.project")
Using the plugins DSL:
plugins {
id "ru.art.project" version "1.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.art:application-gradle-plugin:1.12"
}
}
apply plugin: "ru.art.project"