Search Gradle plugins

nrlssc.gplugin-commons

This is not a plugin, just a library needed for other nrlssc plugins

https://github.com/nrl-gradle/gplugin-commons

Sources: https://github.com/seanrl/gplugin-commons.git

Version 1.8.18

1.8.18

Created 30 October 2020.

This is not a plugin, just a library needed for other nrlssc plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("nrlssc.gplugin-commons") version "1.8.18"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("mil.navy.nrlssc:gplugin-commons:1.8.18")
      }
    }
    
    apply(plugin = "nrlssc.gplugin-commons")
  • Applying plugins to all subprojects .