Search Gradle plugins

Version 1.8

1.8

Created 23 January 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.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gae.piaz:layer3gen:1.8")
      }
    }
    
    apply(plugin = "gae.piaz.layer3gen")
  • Applying plugins to all subprojects .