com.prot.wholetest
Owner: George Zhou
provide integration, functional, performance, docker etc end-to-end testing gradle plugin
https://github.com/zpc888/whole-test-gradle-plugin
Sources: https://github.com/zpc888/whole-test-gradle-plugin.git
Version 0.1
Created 03 January 2019.
provide integration, functional, performance, docker etc end-to-end testing gradle plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.prot.wholetest") version "0.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.prot.wholetest:com.prot.wholetest.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.prot.wholetest") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.prot.wholetest:com.prot.wholetest.gradle.plugin:0.1") } } apply(plugin = "com.prot.wholetest")
- Applying plugins to all subprojects .