com.github.jxnu-liguobin.leetcode-helper
所有者: 梦境迷离
Leetcode的Gradle插件
https://github.com/jxnu-liguobin/leetcode-helper
来源: https://github.com/jxnu-liguobin/leetcode-helper
使用插件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"