kordamp-gradle-plugins
kordamp-gradle-plugins copied to clipboard
A collection of Gradle plugins
= kordamp-gradle-plugins :linkattrs: :project-owner: kordamp :project-repo: maven :project-name: kordamp-gradle-plugins :project-group: org.kordamp.gradle :project-version: 0.46.0 :plugin-id: {project-group}.base
image:https://github.com/{project-owner}/{project-name}/workflows/Build/badge.svg["Build Status", link="https://github.com/{project-owner}/{project-name}/actions"] image:https://img.shields.io/maven-metadata/v?label=Plugin%20Portal&metadataUrl=https://plugins.gradle.org/m2/org/kordamp/gradle/base/{plugin-id}.gradle.plugin/maven-metadata.xml["Gradle Plugin Portal, link="https://plugins.gradle.org/plugin/{plugin-id}"]
A set of opinionated Gradle plugins that provide common behavior observed in Maven, and more!
== Usage
Option #1 [source,groovy] [subs="attributes,verbatim"]
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath '{project-group}::{project-version}'
}
}
apply plugin: ''
Option #2 [source,groovy] [subs="attributes,verbatim"]
plugins {
id '' version '{project-version}'
}
Where <plugin-id>
stands for any of the ids described in the guide. Most times it's enough to simply apply
the {project-group}.project
at the root. All plugins may be applied independently as well.
Refer to the link:http://{project-owner}.github.io/{project-name}[guide, window="_blank"] for further information on configuration and usage.
== Requirements
- Java 8
- Gradle 6+