搜索Gradle插件

版本0.5.10(最新版)

0.5.10

创建于2019年7月10日。

无版本描述。

使用插件DSL

plugins {
  id("com.github.pedjak.dockerized-test") version "0.5.10"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.pedjak.gradle.plugins:dockerized-test:0.5.10")
  }
}

apply(plugin = "com.github.pedjak.dockerized-test")

使用插件DSL

plugins {
  id "com.github.pedjak.dockerized-test" version "0.5.10"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.pedjak.gradle.plugins:dockerized-test:0.5.10"
  }
}

apply plugin: "com.github.pedjak.dockerized-test"

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