Search Gradle plugins

Version 0.0.1-c.1

Created 21 April 2020.

Slout integration for Gradle Projects

Using the plugins DSL:

plugins {
  id("com.eilertenstudio.slout.module") version "0.0.1-c.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.eilertenstudio.plugins.gradle:slout:0.0.1-c.1")
  }
}

apply(plugin = "com.eilertenstudio.slout.module")

Using the plugins DSL:

plugins {
  id "com.eilertenstudio.slout.module" version "0.0.1-c.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.eilertenstudio.plugins.gradle:slout:0.0.1-c.1"
  }
}

apply plugin: "com.eilertenstudio.slout.module"

Learn how to apply plugins to subprojects