Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.xenoterracide.gradle.java-lib") version "0.1.15"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.xenoterracide.gradle:pluginbundle:0.1.15")
      }
    }
    
    apply(plugin = "com.xenoterracide.gradle.java-lib")
  • Applying plugins to all subprojects .