搜索Gradle插件

版本 0.1.3-SNAPSHOT(最新版)

0.1.3-SNAPSHOT

创建于2020年11月27日。

使用docker在本地运行redis服务器进行开发

使用插件DSL

plugins {
  id("com.kimtis.gradle.redis-server") version "0.1.3-SNAPSHOT"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.kimtis.gradle:gradle-redis-plugin:0.1.3-SNAPSHOT")
  }
}

apply(plugin = "com.kimtis.gradle.redis-server")

使用插件DSL

plugins {
  id "com.kimtis.gradle.redis-server" version "0.1.3-SNAPSHOT"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.kimtis.gradle:gradle-redis-plugin:0.1.3-SNAPSHOT"
  }
}

apply plugin: "com.kimtis.gradle.redis-server"

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