io.github.karlatemp.java8converter
Owner: Karlatemp
In order to convert the bytecode of java 9+ into the bytecode of java8
https://github.com/Karlatemp/Java8Converter
Sources: https://github.com/Karlatemp/Java8Converter
Version 1.0.1 (latest)
1.0.1
Created 25 May 2020.
In order to convert the bytecode of java 9+ into the bytecode of java8
Using the plugins DSL:
plugins {
id("io.github.karlatemp.java8converter") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.karlatemp:java8converter:1.0.1")
}
}
apply(plugin = "io.github.karlatemp.java8converter")
Using the plugins DSL:
plugins {
id "io.github.karlatemp.java8converter" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.karlatemp:java8converter:1.0.1"
}
}
apply plugin: "io.github.karlatemp.java8converter"