Search Gradle plugins

kliche.java8-everything

Plugin for automatically setting source/targetCompatibility of all modules in project to Java 8

https://github.com/kliche-dev/gradle-plugin-java8-everything

Sources: https://github.com/liminal/kliche-gradle-plugins.git

Version 1.1 (latest)

Created 24 September 2020.

Convenience plugin for people using the previous non generic version of the Java Version Everything plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("kliche.java8-everything") version "1.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("kliche.java8-everything:kliche.java8-everything.gradle.plugin:1.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("kliche.java8-everything")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("kliche.java8-everything:kliche.java8-everything.gradle.plugin:1.1")
      }
    }
    
    apply(plugin = "kliche.java8-everything")
  • Applying plugins to all subprojects .