Search Gradle plugins

Version 0.2.0-alpha.42

0.2.0-alpha.42

Created 30 September 2022.

Easy setup for each kind of project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.javiersc.hubdle") version "0.2.0-alpha.42"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.javiersc.hubdle:hubdle-gradle-plugin:0.2.0-alpha.42")
      }
    }
    
    apply(plugin = "com.javiersc.hubdle")
  • Applying plugins to all subprojects .