Search Gradle plugins

Version 0.1 (latest)

0.1

Created 21 December 2021.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Applies configuration for Sandpolis modules

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.s7s.build.module") version "0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.s7s:org.s7s.build:0.1")
      }
    }
    
    apply(plugin = "org.s7s.build.module")
  • Applying plugins to all subprojects .