com.github.honourednihilist.gradle-postgresql-embedded
Owner: honourednihilist
Gradle plugin to run embedded PostgreSQL server
https://github.com/honourednihilist/gradle-postgresql-embedded
Sources: https://github.com/honourednihilist/gradle-postgresql-embedded
Version 0.1.0-SNAPSHOT
0.1.0-SNAPSHOT
Created 18 April 2017.
Gradle plugin to run embedded PostgreSQL server
Using the plugins DSL:
plugins {
id("com.github.honourednihilist.gradle-postgresql-embedded") version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.honourednihilist:gradle-postgresql-embedded:0.1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.honourednihilist.gradle-postgresql-embedded")
Using the plugins DSL:
plugins {
id "com.github.honourednihilist.gradle-postgresql-embedded" version "0.1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.honourednihilist:gradle-postgresql-embedded:0.1.0-SNAPSHOT"
}
}
apply plugin: "com.github.honourednihilist.gradle-postgresql-embedded"