com.janitovff.play-ebean
Enhance Ebean entities for use with Play! framework
http://github.com/jvff/play-ebean-gradle-plugin
Sources: http://github.com/jvff/play-ebean-gradle-plugin
Version 0.0.1-dev.13+6202d78
Created 02 September 2016.
Enhance Ebean entities for use with Play! framework
Add this plugin to your build using the plugins DSL:
plugins {
id("com.janitovff.play-ebean") version "0.0.1-dev.13+6202d78"
}
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("com.janitovff.play-ebean:com.janitovff.play-ebean.gradle.plugin:0.0.1-dev.13+6202d78") }
It can then be applied in the precompiled script plugin:plugins { id("com.janitovff.play-ebean") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.janitovff.play-ebean:com.janitovff.play-ebean.gradle.plugin:0.0.1-dev.13+6202d78") } } apply(plugin = "com.janitovff.play-ebean")
- Applying plugins to all subprojects .