Search Gradle plugins

Using the plugins DSL:

plugins {
  id("org.jreleaser") version "1.0.0-RC1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jreleaser:jreleaser-gradle-plugin:1.0.0-RC1")
  }
}

apply(plugin = "org.jreleaser")

Using the plugins DSL:

plugins {
  id "org.jreleaser" version "1.0.0-RC1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jreleaser:jreleaser-gradle-plugin:1.0.0-RC1"
  }
}

apply plugin: "org.jreleaser"

Learn how to apply plugins to subprojects