com.github.luzzif.integration-tests
                  Owner:
                  
                    
                    Federico Luzzi
                  
                
A Gradle plugin to easily setup JVM-based languages integration testing.
https://github.com/luzzif/gradle-integration-tests
Sources: https://github.com/luzzif/gradle-integration-tests
Version 1.2.0
Created 24 July 2018.
                A Gradle plugin to easily setup JVM-based languages integration testing.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.github.luzzif.integration-tests") version "1.2.0"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.github.luzzif.integration-tests:com.github.luzzif.integration-tests.gradle.plugin:1.2.0") }It can then be applied in the precompiled script plugin:plugins { id("com.github.luzzif.integration-tests") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.luzzif.integration-tests:com.github.luzzif.integration-tests.gradle.plugin:1.2.0") } } apply(plugin = "com.github.luzzif.integration-tests") - Applying plugins to all subprojects .