Search Gradle plugins

Version 1.8

1.8

Created 05 August 2019.

A plugin that helps you to configure JVM projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.art.project") version "1.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.art:application-gradle-plugin:1.8")
      }
    }
    
    apply(plugin = "ru.art.project")
  • Applying plugins to all subprojects .