com.charlesahunt.scalapb
Owner: Charles Hunt
Compiles protobuf to Scala classes
https://github.com/CharlesAHunt/scalapb-gradle-plugin
Sources: git@github.com:CharlesAHunt/scalapb-gradle-plugin.git
Version 1.3.0 (latest)
1.3.0
Created 06 November 2019.
This plugin uses the [ScalaPB](http://scalapb.github.io) compiler to generate Scala case classes from protocol buffers and put them under the managed sources directory in your project.
Using the plugins DSL:
plugins {
id("com.charlesahunt.scalapb") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.charlesahunt:scalapb-plugin:1.3.0")
}
}
apply(plugin = "com.charlesahunt.scalapb")
Using the plugins DSL:
plugins {
id "com.charlesahunt.scalapb" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.charlesahunt:scalapb-plugin:1.3.0"
}
}
apply plugin: "com.charlesahunt.scalapb"