com.mgmtp.gradle-libactivity-plugin
Owner:
Mathias Roeppischer
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mgmtp.gradle-libactivity-plugin") version "1.0.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.mgmtp.gradle-libactivity-plugin:com.mgmtp.gradle-libactivity-plugin.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.mgmtp.gradle-libactivity-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mgmtp.gradle-libactivity-plugin:com.mgmtp.gradle-libactivity-plugin.gradle.plugin:1.0.0") } } apply(plugin = "com.mgmtp.gradle-libactivity-plugin")
- Applying plugins to all subprojects .