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.5

1.0.5

Created 02 February 2018.

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.test-source-sets") 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.test-source-sets")
  • Applying plugins to all subprojects .