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)

1.6.0

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.kotka.gradle:gradle-plugin:1.6.0")
      }
    }
    
    apply(plugin = "de.kotka.project")
  • Applying plugins to all subprojects .