Search Gradle plugins

name.remal.test-source-sets

Plugin that provides testSourceSet object for creating new source sets for testing. For all created source sets Test task is created. All dependencies are inherited from 'test' source set.

https://github.com/remal-gradle-plugins/test-source-sets

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

Version 1.0.209

1.0.209

Created 31 July 2020.

Plugin that provides testSourceSet object for creating new source sets for testing. For all created source sets Test task is created. All dependencies are inherited from 'test' source set. Min Gradle version: 4.5.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.test-source-sets") version "1.0.209"
}

See also:

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