Search Gradle plugins

io.github.zafkiel1312.verifyfeign

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.2

Created 19 April 2022.

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.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.zafkiel1312.verifyfeign:verifyfeign:0.2")
  }
}

apply(plugin = "io.github.zafkiel1312.verifyfeign")

Using the plugins DSL:

plugins {
  id "io.github.zafkiel1312.verifyfeign" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.zafkiel1312.verifyfeign:verifyfeign:0.2"
  }
}

apply plugin: "io.github.zafkiel1312.verifyfeign"

Learn how to apply plugins to subprojects