com.apothesource.fam.kubeint.itest
Owner: Apothesource
Gradle plugin to run integration tests against services deployed in a kubernetes cluster
https://gitlab.com/apothesource-oss/kubeint-gradle-plugin
Sources: https://gitlab.com/apothesource-oss/kubeint-gradle-plugin
Version 0.0.3
0.0.3
Created 29 April 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.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.apothesource.fam:kubeint-gradle-plugin:0.0.3")
}
}
apply(plugin = "com.apothesource.fam.kubeint.itest")
Using the plugins DSL:
plugins {
id "com.apothesource.fam.kubeint.itest" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.apothesource.fam:kubeint-gradle-plugin:0.0.3"
}
}
apply plugin: "com.apothesource.fam.kubeint.itest"