搜索 Gradle 插件

io.outfoxx.sunday-generator

所有者: Kevin Wooten

Sunday Generator 是一个多语言支持 Sunday HTTP 客户端和 JAX-RS 服务器存根的代码生成器。

https://outfoxx.github.io/sunday

来源: https://github.com/outfoxx/sunday-generator

使用 插件 DSL

plugins {
  id("io.outfoxx.sunday-generator") version "1.1.0-beta.23"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.outfoxx.sunday:gradle-plugin:1.1.0-beta.23")
  }
}

apply(plugin = "io.outfoxx.sunday-generator")

使用 插件 DSL

plugins {
  id "io.outfoxx.sunday-generator" version "1.1.0-beta.23"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.outfoxx.sunday:gradle-plugin:1.1.0-beta.23"
  }
}

apply plugin: "io.outfoxx.sunday-generator"

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