Search Gradle plugins

Version 1.0.173

1.0.173

Created 14 February 2020.

Plugin that configures Java agents. Min Gradle version: 4.5.

Add this plugin to your build using the plugins DSL:

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

See also:

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