Search Gradle plugins

Version 0.2 (latest)

Created 17 November 2020.

Simple plugin to convert Markdown files to HTML during the build process.

Using the plugins DSL:

plugins {
  id("com.github.johny65.simplemd") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.johny65:gradle-simplemd-plugin:0.2")
  }
}

apply(plugin = "com.github.johny65.simplemd")

Using the plugins DSL:

plugins {
  id "com.github.johny65.simplemd" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.johny65:gradle-simplemd-plugin:0.2"
  }
}

apply plugin: "com.github.johny65.simplemd"

Learn how to apply plugins to subprojects