Search Gradle plugins

Version 1.0.13-6c6970f (latest)

Created 23 March 2022.

Helper plugin for all open-source projects produced by Indeed

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.indeed.oss") version "1.0.13-6c6970f"
}

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("com.indeed.oss:com.indeed.oss.gradle.plugin:1.0.13-6c6970f")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.indeed.oss")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.indeed.oss:com.indeed.oss.gradle.plugin:1.0.13-6c6970f")
      }
    }
    
    apply(plugin = "com.indeed.oss")
  • Applying plugins to all subprojects .