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.