Search Gradle plugins

name.remal.use-jar-archives-for-testing

Plugin that configurers using Jar archives for tests's classpath instead of main source-set output. Min Gradle version: 4.5.

https://remal.gitlab.io/gradle-plugins/plugins/name.remal.use-jar-archives-for-testing/

Sources: https://gitlab.com/remal/gradle-plugins.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.use-jar-archives-for-testing") version "1.0.189"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.0.189")
      }
    }
    
    apply(plugin = "name.remal.use-jar-archives-for-testing")
  • Applying plugins to all subprojects .