Search Gradle plugins

Version 2.0.0

2.0.0

Created 17 April 2016.

A gradle plugin for enhancing ebean entities.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.kt3k.ebean.enhance") version "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.kt3k:ebean-enhance-plugin:2.0.0")
      }
    }
    
    apply(plugin = "com.github.kt3k.ebean.enhance")
  • Applying plugins to all subprojects .