Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.59 KB

README.adoc

File metadata and controls

53 lines (43 loc) · 1.59 KB

kordamp-gradle-plugins

Build Status Gradle Plugin Portal, link=


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

Usage

Option #1

buildscript {
    repositories {
        gradlePluginPortal()
        mavenCentral()
    }
    dependencies {
        classpath 'org.kordamp.gradle:<plugin-artifact-id>:0.54.0'
    }
}
apply plugin: '<plugin-id>'

Option #2

plugins {
    id '<plugin-id>' version '0.54.0'
}

Where <plugin-id> stands for any of the ids described in the guide. 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 11

  • Gradle 7+