com.palantir.docker-test-runner
Owner: Palantir Technologies
Run tests and generate coverage reports in Docker containers
https://github.com/palantir/gradle-docker-test-runner
Sources: https://github.com/palantir/gradle-docker-test-runner
Version 0.1.1 (latest)
Created 11 April 2016.
Run tests and generate coverage reports in Docker containers
Add this plugin to your build using the plugins DSL:
plugins {
id("com.palantir.docker-test-runner") version "0.1.1"
}
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.palantir.docker-test-runner:com.palantir.docker-test-runner.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.palantir.docker-test-runner") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.palantir.docker-test-runner:com.palantir.docker-test-runner.gradle.plugin:0.1.1") } } apply(plugin = "com.palantir.docker-test-runner")
- Applying plugins to all subprojects .