Search Gradle plugins

Version 1.0.1 (latest)

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"

Learn how to apply plugins to subprojects