Search Gradle plugins

Version 0.5.0+19-5f5b2caa

0.5.0+19-5f5b2caa

Created 04 March 2019.

Building streaming gRPC servers and clients on top of Akka Streams

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.lightbend.akka.grpc.gradle") version "0.5.0+19-5f5b2caa"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.lightbend.akka.grpc:akka-grpc-gradle-plugin:0.5.0+19-5f5b2caa")
      }
    }
    
    apply(plugin = "com.lightbend.akka.grpc.gradle")
  • Applying plugins to all subprojects .