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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.withplum.notifier:com.withplum.notifier.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.withplum.notifier")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.withplum.notifier:com.withplum.notifier.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "com.withplum.notifier")
  • Applying plugins to all subprojects .