搜索 Gradle 插件

io.github.zafkiel1312.verifyfeign

所有者: Tim Döring

插件用于检查客户端是否使用了RestControllers,以及客户端是否有合适的rest接口

https://github.com/Zafkiel1312/verify-feign

来源:https://github.com/Zafkiel1312/verify-feign

版本 0.5(最新版本)

0.5

创建于 2023年9月13日。

插件用于检查客户端是否使用了RestControllers,以及客户端是否有合适的rest接口

使用 插件 DSL

plugins {
  id("io.github.zafkiel1312.verifyfeign") version "0.5"
}

使用 旧插件应用程序

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

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

使用 插件 DSL

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

使用 旧插件应用程序

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

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

了解如何将插件应用到子项目中