Search Gradle plugins

org.mikeneck.http-spec-runner-gradle-plugin

Gradle plugin which runs http-spec-runner as gradle task. For more information, please visit https://github.com/mike-neck/http-spec-runner .

https://github.com/mike-neck/http-spec-runner

Sources: https://github.com/mike-neck/http-spec-runner

Version v0.2.0 (latest)

Created 22 May 2021.

Gradle plugin which runs http-spec-runner as gradle task. For more information, please visit https://github.com/mike-neck/http-spec-runner .

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.mikeneck.http-spec-runner-gradle-plugin") version "v0.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("org.mikeneck.http-spec-runner-gradle-plugin:org.mikeneck.http-spec-runner-gradle-plugin.gradle.plugin:v0.2.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.mikeneck.http-spec-runner-gradle-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.mikeneck.http-spec-runner-gradle-plugin:org.mikeneck.http-spec-runner-gradle-plugin.gradle.plugin:v0.2.0")
      }
    }
    
    apply(plugin = "org.mikeneck.http-spec-runner-gradle-plugin")
  • Applying plugins to all subprojects .