Search Gradle plugins

Version 0.0.14 (latest)

Created 24 May 2021.

The Platform Test Gradle plugin manages the lifecycle of a platform purposed for E2E testing.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.felipefzdz.platform-test") version "0.0.14"
}

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.felipefzdz.platform-test:com.felipefzdz.platform-test.gradle.plugin:0.0.14")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.felipefzdz.platform-test")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.felipefzdz.platform-test:com.felipefzdz.platform-test.gradle.plugin:0.0.14")
      }
    }
    
    apply(plugin = "com.felipefzdz.platform-test")
  • Applying plugins to all subprojects .