Search Gradle plugins

Version 1.0.10 (latest)

1.0.10

Created 13 February 2018.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Plugin that creates 'compileCopy' configuration.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.compile-copy") version "1.0.10"
}

See also:

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