Search Gradle plugins

Version 0.1.3 (latest)

Created 15 June 2020.

Opinionated Terraform

Using the plugins DSL:

plugins {
  id("net.kebernet.world-engine") version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.kebernet:world-engine:0.1.3")
  }
}

apply(plugin = "net.kebernet.world-engine")

Using the plugins DSL:

plugins {
  id "net.kebernet.world-engine" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.kebernet:world-engine:0.1.3"
  }
}

apply plugin: "net.kebernet.world-engine"

Learn how to apply plugins to subprojects