Search Gradle plugins

Version 1.0

1.0

Created 10 February 2023.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.madhead.gradle.ngrok:plugin:1.0")
      }
    }
    
    apply(plugin = "me.madhead.gradle.ngrok")
  • Applying plugins to all subprojects .