Search Gradle plugins

Using the plugins DSL:

plugins {
  id("org.beryx.runtime") version "1.11.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.beryx:badass-runtime-plugin:1.11.5")
  }
}

apply(plugin = "org.beryx.runtime")

Using the plugins DSL:

plugins {
  id "org.beryx.runtime" version "1.11.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.beryx:badass-runtime-plugin:1.11.5"
  }
}

apply plugin: "org.beryx.runtime"

Learn how to apply plugins to subprojects