Search Gradle plugins

Version 1.0.1-13-e0aefa0f

Created 11 August 2020.

Building streaming gRPC servers and clients on top of Akka Streams

Using the plugins DSL:

plugins {
  id("com.lightbend.akka.grpc.gradle") version "1.0.1-13-e0aefa0f"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.lightbend.akka.grpc:akka-grpc-gradle-plugin:1.0.1-13-e0aefa0f")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.lightbend.akka.grpc.gradle" version "1.0.1-13-e0aefa0f"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.lightbend.akka.grpc:akka-grpc-gradle-plugin:1.0.1-13-e0aefa0f"
  }
}

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

Learn how to apply plugins to subprojects