搜索Gradle插件

版本 1.0.1 (最新版)

1.0.1

创建于2020年5月25日。

将该插件的字节码从Java 9+转换为Java 8的字节码

使用插件的DSL

plugins {
  id("io.github.karlatemp.java8converter") version "1.0.1"
}

使用旧插件应用

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

apply(plugin = "io.github.karlatemp.java8converter")

使用插件的DSL

plugins {
  id "io.github.karlatemp.java8converter" version "1.0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.karlatemp:java8converter:1.0.1"
  }
}

apply plugin: "io.github.karlatemp.java8converter"

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