Search Gradle plugins

Version 1.1.4

Created 05 October 2017.

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.1.4"
}

Using legacy plugin application:

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

apply(plugin = "com.charlesahunt.scalapb")

Using the plugins DSL:

plugins {
  id "com.charlesahunt.scalapb" version "1.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.charlesahunt:scalapb-plugin:1.1.4"
  }
}

apply plugin: "com.charlesahunt.scalapb"

Learn how to apply plugins to subprojects