Search Gradle plugins

Version 0.4.8

Created 19 May 2021.

Gradle plugin to run integration tests against services deployed in a kubernetes cluster

Using the plugins DSL:

plugins {
  id("com.apothesource.fam.kubeint.itest") version "0.4.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.apothesource.fam:kubeint-gradle-plugin:0.4.8")
  }
}

apply(plugin = "com.apothesource.fam.kubeint.itest")

Using the plugins DSL:

plugins {
  id "com.apothesource.fam.kubeint.itest" version "0.4.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.apothesource.fam:kubeint-gradle-plugin:0.4.8"
  }
}

apply plugin: "com.apothesource.fam.kubeint.itest"

Learn how to apply plugins to subprojects