com.github.jxnu-liguobin.leetcode-helper
Owner: 梦境迷离
Gradle plugin for Leetcode
https://github.com/jxnu-liguobin/leetcode-helper
Sources: https://github.com/jxnu-liguobin/leetcode-helper
Using the plugins DSL:
plugins {
id("com.github.jxnu-liguobin.leetcode-helper") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.jxnu-liguobin:leetcode-helper:0.1.4")
}
}
apply(plugin = "com.github.jxnu-liguobin.leetcode-helper")
Using the plugins DSL:
plugins {
id "com.github.jxnu-liguobin.leetcode-helper" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jxnu-liguobin:leetcode-helper:0.1.4"
}
}
apply plugin: "com.github.jxnu-liguobin.leetcode-helper"