name.remal.integration-tests
Owner: Semyon Levin
Plugin that adds 'integration' source set and configures it.
https://github.com/remal-gradle-plugins/test-source-sets
Sources: https://gitlab.com/remal/name.remal.gradle-plugins.git
Version 4.1.1 (latest)
4.1.1
Created 09 May 2024.
A plugin that creates `integrationTest` source set for integration tests
Using the plugins DSL:
plugins {
id("name.remal.integration-tests") version "4.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("name.remal.gradle-plugins.test-source-sets:test-source-sets:4.1.1")
}
}
apply(plugin = "name.remal.integration-tests")
Using the plugins DSL:
plugins {
id "name.remal.integration-tests" version "4.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "name.remal.gradle-plugins.test-source-sets:test-source-sets:4.1.1"
}
}
apply plugin: "name.remal.integration-tests"