io.vincentpalazzo.gradledatabase
Owner: Vincenzo Palazzo
The gradle-project is the simple plugin for gradle for operation with database.
https://github.com/vincenzopalazzo/gradle-database
Sources: https://github.com/vincenzopalazzo/gradle-database
Version 0.6 (latest)
Created 17 May 2019.
The gradle-database is the simple plugin for gradle for operation with database.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.vincentpalazzo.gradledatabase") version "0.6"
}
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("io.vincentpalazzo.gradledatabase:io.vincentpalazzo.gradledatabase.gradle.plugin:0.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.vincentpalazzo.gradledatabase") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.vincentpalazzo.gradledatabase:io.vincentpalazzo.gradledatabase.gradle.plugin:0.6") } } apply(plugin = "io.vincentpalazzo.gradledatabase")
- Applying plugins to all subprojects .