Search Gradle plugins

Version 1.0.2 (latest)

Created 12 September 2018.

Some usefull plugins from PuraVida Software!

Using the plugins DSL:

plugins {
  id("com.puravida.gradle.checkserver") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.puravida.gradle:check-server:1.0.2")
  }
}

apply(plugin = "com.puravida.gradle.checkserver")

Using the plugins DSL:

plugins {
  id "com.puravida.gradle.checkserver" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.puravida.gradle:check-server:1.0.2"
  }
}

apply plugin: "com.puravida.gradle.checkserver"

Learn how to apply plugins to subprojects