io.github.Boozilla.houston
Owner: Chanhwi Kim
It is a protobuf structure synchronization helper plugin that works with the Houston asset server
https://github.com/Boozilla/houston-gradle
Sources: https://github.com/Boozilla/houston-gradle
Version 1.1.0 (latest)
1.1.0
Created 22 November 2022.
It is a protobuf structure synchronization helper plugin that works with the Houston asset server
Using the plugins DSL:
plugins {
id("io.github.Boozilla.houston") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.Boozilla.houston:houston-gradle:1.1.0")
}
}
apply(plugin = "io.github.Boozilla.houston")
Using the plugins DSL:
plugins {
id "io.github.Boozilla.houston" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.Boozilla.houston:houston-gradle:1.1.0"
}
}
apply plugin: "io.github.Boozilla.houston"