io.github.stepanovd.springwolfdoc2dto
Owner: Dmitry Stepanov
A plugin that helps you generate DTO model by Springwolf docs
https://github.com/stepanovD/springwolfdoc2dto
Sources: https://github.com/stepanovD/springwolfdoc2dto
Version 1.0.8-alpha (latest)
1.0.8-alpha
Created 05 September 2023.
A plugin that helps you generate DTO model by Springwolf docs
Using the plugins DSL:
plugins {
id("io.github.stepanovd.springwolfdoc2dto") version "1.0.8-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.stepanovd:springwolfdoc2dto-gradle-plugin:1.0.8-alpha")
}
}
apply(plugin = "io.github.stepanovd.springwolfdoc2dto")
Using the plugins DSL:
plugins {
id "io.github.stepanovd.springwolfdoc2dto" version "1.0.8-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.stepanovd:springwolfdoc2dto-gradle-plugin:1.0.8-alpha"
}
}
apply plugin: "io.github.stepanovd.springwolfdoc2dto"