com.novoda.sqlite-analyzer
Owner: Novoda
Code generation for Java/Android database access.
https://github.com/novoda/sqlite-analyzer
Sources: https://github.com/novoda/sqlite-analyzer
Version 0.3.1 (latest)
Created 30 May 2015.
Code generation for Java/Android database access.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.novoda.sqlite-analyzer") version "0.3.1"
}
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.novoda.sqlite-analyzer:com.novoda.sqlite-analyzer.gradle.plugin:0.3.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.novoda.sqlite-analyzer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.novoda.sqlite-analyzer:com.novoda.sqlite-analyzer.gradle.plugin:0.3.1") } } apply(plugin = "com.novoda.sqlite-analyzer")
- Applying plugins to all subprojects .