Search Gradle plugins

Version 1.0.21

Created 20 November 2018.

facilitate Browser Client/Server Develop

Using the plugins DSL:

plugins {
  id("com.windfish.gradle.lazyfish") version "1.0.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.windfish.gradle:lazyfish:1.0.21")
  }
}

apply(plugin = "com.windfish.gradle.lazyfish")

Using the plugins DSL:

plugins {
  id "com.windfish.gradle.lazyfish" version "1.0.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.windfish.gradle:lazyfish:1.0.21"
  }
}

apply plugin: "com.windfish.gradle.lazyfish"

Learn how to apply plugins to subprojects