搜索Gradle插件

版本 0.5.0(最新版)

0.5.0

创建于2021年5月19日。

Gradle插件,用于在Kubernetes集群中部署的服务上运行集成测试

使用插件的DSL

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

使用传统插件应用方式

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

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

使用插件的DSL

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

使用传统插件应用方式

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

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

了解如何将插件应用到子项目中