Search Gradle plugins

Version 0.7.1 (latest)

Created 01 April 2024.

Build Hugo static sites with Gradle!

Using the plugins DSL:

plugins {
  id("io.github.fstaudt.hugo") version "0.7.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.fstaudt.hugo:gradle-hugo-plugin:0.7.1")
  }
}

apply(plugin = "io.github.fstaudt.hugo")

Using the plugins DSL:

plugins {
  id "io.github.fstaudt.hugo" version "0.7.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.fstaudt.hugo:gradle-hugo-plugin:0.7.1"
  }
}

apply plugin: "io.github.fstaudt.hugo"

Learn how to apply plugins to subprojects