Search Gradle plugins

Version 1.1.0 (latest)

Created 11 January 2022.

Starting a Skot Project

Using the plugins DSL:

plugins {
  id("tech.skot.starter") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tech.skot:plugin:1.1.0")
  }
}

apply(plugin = "tech.skot.starter")

Using the plugins DSL:

plugins {
  id "tech.skot.starter" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tech.skot:plugin:1.1.0"
  }
}

apply plugin: "tech.skot.starter"

Learn how to apply plugins to subprojects