Search Gradle plugins

Version 0.6.1

0.6.1

Created 23 November 2023.

A gradle plugin to build Niagara module in Kotlin

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.restartech.nmodule"

Learn how to apply plugins to subprojects