Search Gradle plugins

Version 0.4.0-alpha.1

0.4.0-alpha.1

Created 25 January 2023.

Easy setup for each kind of project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.javiersc.hubdle") version "0.4.0-alpha.1"
}

See also:

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