Search Gradle plugins

com.mgmtp.gradle-libactivity-plugin

Checks if a library is still active, i.e. for a predefined age limit either the latest library release is not older than the limit or there are commits for that library on GitHub not older than the limit.

https://github.com/mgm-tp/gradle-libactivity-plugin

Sources: https://github.com/mgm-tp/gradle-libactivity-plugin.git

Version 1.0.0 (latest)

Created 26 May 2021.

Checks if a library is still active, i.e. for a predefined age limit either the latest library release is not older than the limit or there are commits for that library on GitHub not older than the limit.

Using the plugins DSL:

plugins {
  id("com.mgmtp.gradle-libactivity-plugin") version "1.0.0"
}

Using legacy plugin application:

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

apply(plugin = "com.mgmtp.gradle-libactivity-plugin")

Using the plugins DSL:

plugins {
  id "com.mgmtp.gradle-libactivity-plugin" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.mgmtp.gradle.libactivity.plugin:gradle-libactivity-plugin:1.0.0"
  }
}

apply plugin: "com.mgmtp.gradle-libactivity-plugin"

Learn how to apply plugins to subprojects