com.github.gmazzo.sqlite
Owner: Guillermo Mazzola
A Gradle plugin to allow manipulating SQLite databases in the buildScript
https://github.com/gmazzo/gradle-sqlite-plugin
Sources: https://github.com/gmazzo/gradle-sqlite-plugin
Version 0.1
0.1
Created 12 September 2017.
A Gradle plugin to allow manipulating SQLite databases in the buildScript
Using the plugins DSL:
plugins {
id("com.github.gmazzo.sqlite") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.gmazzo:sqlite-plugin:0.1")
}
}
apply(plugin = "com.github.gmazzo.sqlite")
Using the plugins DSL:
plugins {
id "com.github.gmazzo.sqlite" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.gmazzo:sqlite-plugin:0.1"
}
}
apply plugin: "com.github.gmazzo.sqlite"