Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 05 October 2020.

Provides Sling HTL Scripting Engine support

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cognifide.htl") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cognifide.gradle:htl-plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.cognifide.htl")
  • Applying plugins to all subprojects .