Search Gradle plugins

me.champeau.jbake

Adds the ability to run JBake directly from a Gradle build

http://jbake.org/

Version 0.2 (latest)

Created 11 June 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("me.champeau.jbake") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.champeau.gradle:jbake-gradle-plugin:0.2")
  }
}

apply(plugin = "me.champeau.jbake")

Using the plugins DSL:

plugins {
  id "me.champeau.jbake" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.champeau.gradle:jbake-gradle-plugin:0.2"
  }
}

apply plugin: "me.champeau.jbake"

Learn how to apply plugins to subprojects