Search Gradle plugins

Version 0.1.4 (latest)

Created 28 March 2021.

Gradle plugin for Leetcode

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"

Learn how to apply plugins to subprojects