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 3.0.3

3.0.3

Created 18 May 2023.

A plugin that provides `testSourceSet` extension for creating new source sets for testing. For all created source sets a Test task is created. All dependencies are inherited from `test` source set.

Add this plugin to your build using the plugins DSL:

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

See also:

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