/kordamp-gradle-plugins

A collection of Gradle plugins

Primary LanguageGroovyApache License 2.0Apache-2.0

kordamp-gradle-plugins

Build Status Apache License 2 download donations Patreon f96854


A set of opinionated Gradle plugins that provide common behavior observed in Maven, and more!

Usage

Option #1

buildscript {
    repositories {
        jcenter()
        maven {  url 'https://plugins.gradle.org/m2/' }
    }
    dependencies {
        classpath 'org.kordamp.gradle:{plugin-id}:0.22.0'
    }
}
apply plugin: '{plugin-id}'

Option #2

plugins {
    id '{plugin-id}' version '0.22.0'
}

Where {plugin-id} stands for any of the ids described in the following section. Most times it’s enough to simply apply the org.kordamp.gradle.project at the root. All plugins may be applied independently as well.

Refer to the guide for further information on configuration and usage.

Requirements

  • Java 8

  • Gradle 5+