Search Gradle plugins

se.rosenhorn.scalapb

Owner: HÃ¥kan

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.

https://github.com/hrosenhorn/scalapb-gradle-plugin

Sources: git@github.com:hrosenhorn/scalapb-gradle-plugin.git

Version 1.1.8 (latest)

Created 25 July 2018.

THIS IS A FORK OF https://github.com/CharlesAHunt/scalapb-gradle-plugin until PR is accepted! 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("se.rosenhorn.scalapb") version "1.1.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.se.rosenhorn:scalapb-plugin:1.1.8")
  }
}

apply(plugin = "se.rosenhorn.scalapb")

Using the plugins DSL:

plugins {
  id "se.rosenhorn.scalapb" version "1.1.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.se.rosenhorn:scalapb-plugin:1.1.8"
  }
}

apply plugin: "se.rosenhorn.scalapb"

Learn how to apply plugins to subprojects