Search Gradle plugins

Version 1.0.5

1.0.5

Created 02 February 2018.

Plugin that provides classes relocating functionality

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.classes-relocation") version "1.0.5"
}

See also:

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