Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.brambolt.gradle.velocity") version "2020.11.18-4273"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.brambolt.gradle:brambolt-gradle-velocity:2020.11.18-4273")
      }
    }
    
    apply(plugin = "com.brambolt.gradle.velocity")
  • Applying plugins to all subprojects .