Search Gradle plugins

de.kotka.project

A Gradle plugin to drive builds in a standard way It is used to configure my projects with standard values to augment POM meta information, bintray upload, additional standard tasks, etc. This plugin is highly opinionated and provided in the hope someone else might also find use for it.

https://bitbucket.org/kotkade/gradle-plugin

Version 1.6.0 (latest)

Created 11 November 2015.

A Gradle plugin to drive builds in a standard way

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.kotka.project") version "1.6.0"
}

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