搜索 Gradle 插件

版本 2.3 (最新)

2.3

创建于 2022 年 7 月 10 日。

Testcontainers 构建服务

使用 插件 DSL

plugins {
  id("io.github.stackunderflow111.testcontainers") version "2.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.stackunderflow111:testcontainers-plugin:2.3")
  }
}

apply(plugin = "io.github.stackunderflow111.testcontainers")

使用 插件 DSL

plugins {
  id "io.github.stackunderflow111.testcontainers" version "2.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.stackunderflow111:testcontainers-plugin:2.3"
  }
}

apply plugin: "io.github.stackunderflow111.testcontainers"

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