Search Gradle plugins

com.withplum.notifier

Parses the versions.properties (created by the refreshVersions plugin) file and notifies if there are updates. Current implementation posts updates to a Github Issue.

https://github.com/withplum/notifier

Sources: https://github.com/withplum/notifier.git

Version 0.1.0 (latest)

Created 15 October 2021.

Parses the versions.properties (created by the refreshVersions plugin) file and notifies if there are updates. Current implementation posts updates to a Github Issue.

Using the plugins DSL:

plugins {
  id("com.withplum.notifier") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.withplum:notifier-plugin:0.1.0")
  }
}

apply(plugin = "com.withplum.notifier")

Using the plugins DSL:

plugins {
  id "com.withplum.notifier" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.withplum:notifier-plugin:0.1.0"
  }
}

apply plugin: "com.withplum.notifier"

Learn how to apply plugins to subprojects