Search Gradle plugins

Version 1.1 (latest)

Created 13 February 2023.

This plugin allows you to start ngrok tunnel as a part of your build

Using the plugins DSL:

plugins {
  id("me.madhead.gradle.ngrok") version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.madhead.gradle.ngrok:plugin:1.1")
  }
}

apply(plugin = "me.madhead.gradle.ngrok")

Using the plugins DSL:

plugins {
  id "me.madhead.gradle.ngrok" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.madhead.gradle.ngrok:plugin:1.1"
  }
}

apply plugin: "me.madhead.gradle.ngrok"

Learn how to apply plugins to subprojects