Search Gradle plugins

Version 0.3 (latest)

Created 28 November 2021.

This plugin applies configuration for all Sandpolis modules

Using the plugins DSL:

plugins {
  id("com.sandpolis.build.module") version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.sandpolis:com.sandpolis.build:0.3")
  }
}

apply(plugin = "com.sandpolis.build.module")

Using the plugins DSL:

plugins {
  id "com.sandpolis.build.module" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.sandpolis:com.sandpolis.build:0.3"
  }
}

apply plugin: "com.sandpolis.build.module"

Learn how to apply plugins to subprojects