Search Gradle plugins

Version 0.3.0

0.3.0

Created 27 July 2017.

Plugin that configures Java agents.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.agent") version "0.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.name.remal:gradle-plugins:0.3.0")
      }
    }
    
    apply(plugin = "name.remal.agent")
  • Applying plugins to all subprojects .