搜索Gradle插件

版本 0.1.4 (最新)

0.1.4

创建于2021年3月28日。

Leetcode的Gradle插件

使用插件DSL

plugins {
  id("com.github.jxnu-liguobin.leetcode-helper") version "0.1.4"
}

使用旧版插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.jxnu-liguobin:leetcode-helper:0.1.4")
  }
}

apply(plugin = "com.github.jxnu-liguobin.leetcode-helper")

使用插件DSL

plugins {
  id "com.github.jxnu-liguobin.leetcode-helper" version "0.1.4"
}

使用旧版插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.jxnu-liguobin:leetcode-helper:0.1.4"
  }
}

apply plugin: "com.github.jxnu-liguobin.leetcode-helper"

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