com.github.honourednihilist.gradle-postgresql-embedded
所有者: honourednihilist
运行嵌入式PostgreSQL服务器的Gradle插件
https://github.com/honourednihilist/gradle-postgresql-embedded
源代码: https://github.com/honourednihilist/gradle-postgresql-embedded
使用 插件DSL
plugins {
id("com.github.honourednihilist.gradle-postgresql-embedded") version "0.4.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.honourednihilist:gradle-postgresql-embedded:0.4.0")
}
}
apply(plugin = "com.github.honourednihilist.gradle-postgresql-embedded")
使用 插件DSL
plugins {
id "com.github.honourednihilist.gradle-postgresql-embedded" version "0.4.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.honourednihilist:gradle-postgresql-embedded:0.4.0"
}
}
apply plugin: "com.github.honourednihilist.gradle-postgresql-embedded"