Search Gradle plugins

Version 1.7.1 (latest)

1.7.1

Created 04 February 2023.

A Gradle plugin to aid the packaging and distribution of Lazybones templates.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.codebuilders.lazybones-templates") version "1.7.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.codebuilders:skeletal-gradle:1.7.1")
      }
    }
    
    apply(plugin = "net.codebuilders.lazybones-templates")
  • Applying plugins to all subprojects .