Search Gradle plugins

nu.studer.rocker

Gradle plugin that integrates the Rocker template engine.

https://github.com/etiennestuder/gradle-rocker-plugin

Version 3.0.4 (latest)

Created 03 September 2021.

Gradle plugin that integrates the Rocker template engine.

Using the plugins DSL:

plugins {
  id("nu.studer.rocker") version "3.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nu.studer:gradle-rocker-plugin:3.0.4")
  }
}

apply(plugin = "nu.studer.rocker")

Using the plugins DSL:

plugins {
  id "nu.studer.rocker" version "3.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nu.studer:gradle-rocker-plugin:3.0.4"
  }
}

apply plugin: "nu.studer.rocker"

Learn how to apply plugins to subprojects