Search Gradle plugins

Version 0.1

Created 14 November 2020.

Simple plugin to convert Markdown files to HTML

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects