搜索Gradle插件

版本 9.0.0 (最新)

9.0.0

创建于 2024年7月5日。

MythicDrops JVM Test Suite Gradle项目的通用约定。

使用插件 DSL

plugins {
  id("dev.mythicdrops.gradle.convention.jvm-test-suite") version "9.0.0"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0")
  }
}

apply(plugin = "dev.mythicdrops.gradle.convention.jvm-test-suite")

使用插件 DSL

plugins {
  id "dev.mythicdrops.gradle.convention.jvm-test-suite" version "9.0.0"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0"
  }
}

apply plugin: "dev.mythicdrops.gradle.convention.jvm-test-suite"

学习如何应用到子项目插件