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