Search Gradle plugins

Version 0.2 (latest)

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.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.gmazzo:sqlite-plugin:0.2")
  }
}

apply(plugin = "com.github.gmazzo.sqlite")

Using the plugins DSL:

plugins {
  id "com.github.gmazzo.sqlite" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.gmazzo:sqlite-plugin:0.2"
  }
}

apply plugin: "com.github.gmazzo.sqlite"

Learn how to apply plugins to subprojects