Search Gradle plugins

Version 0.0.0.4

Created 20 May 2016.

Use FreeMarker in Gradle

Using the plugins DSL:

plugins {
  id("ru.myweek-end.freemarker-lib") version "0.0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ru.myweek-end.gradle:freemarker:0.0.0.4")
  }
}

apply(plugin = "ru.myweek-end.freemarker-lib")

Using the plugins DSL:

plugins {
  id "ru.myweek-end.freemarker-lib" version "0.0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ru.myweek-end.gradle:freemarker:0.0.0.4"
  }
}

apply plugin: "ru.myweek-end.freemarker-lib"

Learn how to apply plugins to subprojects