搜索Gradle插件

版本 0.6.0(最新版)

0.6.0

创建于 2020年4月1日。

由于它在JCenter上不再可用,JCenter成为永久的重定向到Maven Central,因此此插件版本将不再解析。请参见以下博客文章以获取详细信息:https://blog.gradle.org.cn/portal-jcenter-impact 本地测试服务器适用于Kotlin/JS

使用plugins DSL

plugins {
  id("com.github.turansky.kfc.local-server") version "0.6.0"
}

使用旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.turansky.kfc:gradle-plugin:0.6.0")
  }
}

apply(plugin = "com.github.turansky.kfc.local-server")

使用plugins DSL

plugins {
  id "com.github.turansky.kfc.local-server" version "0.6.0"
}

使用旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:0.6.0"
  }
}

apply plugin: "com.github.turansky.kfc.local-server"

了解如何应用到子项目