Search Gradle plugins

Version 0.8.0 (latest)

Created 08 May 2024.

A gradle plugin to build Niagara module in Kotlin

Using the plugins DSL:

plugins {
  id("com.restartech.nmodule") version "0.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.restartech:nmodule-gradle-plugin:0.8.0")
  }
}

apply(plugin = "com.restartech.nmodule")

Using the plugins DSL:

plugins {
  id "com.restartech.nmodule" version "0.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.restartech:nmodule-gradle-plugin:0.8.0"
  }
}

apply plugin: "com.restartech.nmodule"

Learn how to apply plugins to subprojects