Search Gradle plugins

Version 2.3.0-8-8017027d

Created 19 April 2023.

Building streaming gRPC servers and clients on top of Akka Streams

Using the plugins DSL:

plugins {
  id("com.lightbend.akka.grpc.gradle") version "2.3.0-8-8017027d"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.lightbend.akka.grpc:akka-grpc-gradle-plugin:2.3.0-8-8017027d")
  }
}

apply(plugin = "com.lightbend.akka.grpc.gradle")

Using the plugins DSL:

plugins {
  id "com.lightbend.akka.grpc.gradle" version "2.3.0-8-8017027d"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.lightbend.akka.grpc:akka-grpc-gradle-plugin:2.3.0-8-8017027d"
  }
}

apply plugin: "com.lightbend.akka.grpc.gradle"

Learn how to apply plugins to subprojects