Search Gradle plugins

Version 2.0.0

Created 17 April 2016.

A gradle plugin for enhancing ebean entities.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.kt3k:ebean-enhance-plugin:2.0.0")
  }
}

apply(plugin = "com.github.kt3k.ebean.enhance")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.kt3k:ebean-enhance-plugin:2.0.0"
  }
}

apply plugin: "com.github.kt3k.ebean.enhance"

Learn how to apply plugins to subprojects