Search Gradle plugins

Version 1.2.10 (latest)

1.2.10

Created 02 December 2024.

Adds an easy and reusable way to use custom JRE's and JDK's for your project

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.intisy.javacompile-gradle") version "1.2.10"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.intisy:javacompile-gradle:1.2.10")
      }
    }
    
    apply(plugin = "io.github.intisy.javacompile-gradle")
  • Applying plugins to all subprojects .