io.github.zafkiel1312.verifyfeign
Owner: Tim Döring
Plugin to check, if RestControllers are used by clients and clients have suitable rest-interfaces
https://github.com/Zafkiel1312/verify-feign
Sources: https://github.com/Zafkiel1312/verify-feign
Version 0.5 (latest)
0.5
Created 13 September 2023.
Plugin to check, if RestControllers are used by clients and clients have suitable rest-interfaces
Using the plugins DSL:
plugins {
id("io.github.zafkiel1312.verifyfeign") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.zafkiel1312.verifyfeign:verifyfeign:0.5")
}
}
apply(plugin = "io.github.zafkiel1312.verifyfeign")
Using the plugins DSL:
plugins {
id "io.github.zafkiel1312.verifyfeign" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.zafkiel1312.verifyfeign:verifyfeign:0.5"
}
}
apply plugin: "io.github.zafkiel1312.verifyfeign"