Search Gradle plugins

com.egis.gradle

Master build script for Egis Java projects

https://www.papertrail.co.za/

Sources: https://github.com/egis/gradle-build

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.egis.gradle") version "1.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.egis:gradle-build:1.6")
      }
    }
    
    apply(plugin = "com.egis.gradle")
  • Applying plugins to all subprojects .