com.toasttab.protokt
Owner: Oleg Golberg
Protobuf compiler and runtime for Kotlin
https://github.com/open-toast/protokt
Sources: https://github.com/open-toast/protokt
Version 1.0.0-beta.2 (latest)
1.0.0-beta.2
Created 29 May 2024.
Protobuf compiler and runtime for Kotlin
Using the plugins DSL:
plugins {
id("com.toasttab.protokt") version "1.0.0-beta.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.toasttab.protokt:protokt-gradle-plugin:1.0.0-beta.2")
}
}
apply(plugin = "com.toasttab.protokt")
Using the plugins DSL:
plugins {
id "com.toasttab.protokt" version "1.0.0-beta.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.toasttab.protokt:protokt-gradle-plugin:1.0.0-beta.2"
}
}
apply plugin: "com.toasttab.protokt"