io.github.lhotari.swagger2markup
Owner: Lari Hotari
A Swagger to Markup (AsciiDoc and Markdown) converter Gradle Plugin. Fork of https://github.com/Swagger2Markup/swagger2markup-gradle-plugin
https://github.com/lhotari/swagger2markup-gradle-plugin
Sources: https://github.com/lhotari/swagger2markup-gradle-plugin
Version 1.3.3.1 (latest)
1.3.3.1
Created 13 September 2018.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
A Swagger to Markup (AsciiDoc and Markdown) converter Gradle Plugin. Fork of https://github.com/Swagger2Markup/swagger2markup-gradle-plugin
Using the plugins DSL:
plugins {
id("io.github.lhotari.swagger2markup") version "1.3.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.lhotari:swagger2markup-gradle-plugin:1.3.3.1")
}
}
apply(plugin = "io.github.lhotari.swagger2markup")
Using the plugins DSL:
plugins {
id "io.github.lhotari.swagger2markup" version "1.3.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.lhotari:swagger2markup-gradle-plugin:1.3.3.1"
}
}
apply plugin: "io.github.lhotari.swagger2markup"