io.github.boozilla.houston
Owner: Chanhwi Kim
This is a plugin that helps work with the houston server
https://github.com/boozilla/houston-gradle
Sources: https://github.com/boozilla/houston-gradle.git
Version 1.0.2 (latest)
1.0.2
Created 04 July 2024.
This is a plugin that helps work with the houston server
Using the plugins DSL:
plugins {
id("io.github.boozilla.houston") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.boozilla.houston:gradle-plugin:1.0.2")
}
}
apply(plugin = "io.github.boozilla.houston")
Using the plugins DSL:
plugins {
id "io.github.boozilla.houston" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.boozilla.houston:gradle-plugin:1.0.2"
}
}
apply plugin: "io.github.boozilla.houston"