io.github.slava0135.doktest
Owner: Kovalevsky Vyacheslav
A plugin that helps you verify Kotlin code in KDoc comments
https://github.com/Slava0135/doktest
Sources: https://github.com/Slava0135/doktest.git
Version 0.1.1 (latest)
0.1.1
Created 15 May 2023.
A plugin that helps you verify Kotlin code in KDoc comments
Using the plugins DSL:
plugins {
id("io.github.slava0135.doktest") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.slava0135:doktest:0.1.1")
}
}
apply(plugin = "io.github.slava0135.doktest")
Using the plugins DSL:
plugins {
id "io.github.slava0135.doktest" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.slava0135:doktest:0.1.1"
}
}
apply plugin: "io.github.slava0135.doktest"