搜索Gradle插件

com.malinskiy.marathon

所有者: Anton Malinskiy

Marathon是一个快速且平台无关的测试运行器,专注于性能和稳定性

https://docs.marathonlabs.io/

来源: https://github.com/MarathonLabs/marathon

版本 0.10.1 (最新版)

0.10.1

创建于 2024年5月10日。

Marathon是一个快速且平台无关的测试运行器,专注于性能和稳定性

使用 插件DSL

plugins {
  id("com.malinskiy.marathon") version "0.10.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.malinskiy.marathon:marathon-gradle-plugin:0.10.1")
  }
}

apply(plugin = "com.malinskiy.marathon")

使用 插件DSL

plugins {
  id "com.malinskiy.marathon" version "0.10.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.malinskiy.marathon:marathon-gradle-plugin:0.10.1"
  }
}

apply plugin: "com.malinskiy.marathon"

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