Search Gradle plugins

Version 1.9 (latest)

Created 26 February 2023.

Generates Spring standard 3 layer classes (Controller, Service, Repository) starting from JPA entities

Add this plugin to your build using the plugins DSL:

plugins {
  id("gae.piaz.layer3gen") version "1.9"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("gae.piaz.layer3gen:gae.piaz.layer3gen.gradle.plugin:1.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("gae.piaz.layer3gen")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gae.piaz.layer3gen:gae.piaz.layer3gen.gradle.plugin:1.9")
      }
    }
    
    apply(plugin = "gae.piaz.layer3gen")
  • Applying plugins to all subprojects .