de.kotka.project
Owner: Meikel Brandmeyer
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
Using the plugins DSL:
plugins {
id("de.kotka.project") version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.kotka.gradle:gradle-plugin:1.6.0")
}
}
apply(plugin = "de.kotka.project")
Using the plugins DSL:
plugins {
id "de.kotka.project" version "1.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.kotka.gradle:gradle-plugin:1.6.0"
}
}
apply plugin: "de.kotka.project"