com.lightbend.akka.grpc.gradle
Owner:
Arnout Engelen
Building streaming gRPC servers and clients on top of Akka Streams
https://doc.akka.io/docs/akka-grpc/current/
Version 0.7.3+46-55558480
Created 30 January 2020.
Building streaming gRPC servers and clients on top of Akka Streams
Using the plugins DSL:
plugins {
id "com.lightbend.akka.grpc.gradle" version "0.7.3+46-55558480"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.lightbend.akka.grpc:akka-grpc-gradle-plugin:0.7.3+46-55558480"
}
}
apply plugin: "com.lightbend.akka.grpc.gradle"
Using the plugins DSL:
plugins {
id("com.lightbend.akka.grpc.gradle") version "0.7.3+46-55558480"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.lightbend.akka.grpc:akka-grpc-gradle-plugin:0.7.3+46-55558480")
}
}
apply(plugin = "com.lightbend.akka.grpc.gradle")