Search Gradle plugins

Version 1.5

1.5

Created 31 October 2020.

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.5"
}

See also:

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