Search Gradle plugins

Version 0.1.0

Created 28 January 2021.

Provides tasks to help submit answers to Google Hashcode

Using the plugins DSL:

plugins {
  id("org.hildan.hashcode-submit") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.hildan.hashcode:hashcode-submit-gradle-plugin:0.1.0")
  }
}

apply(plugin = "org.hildan.hashcode-submit")

Using the plugins DSL:

plugins {
  id "org.hildan.hashcode-submit" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.hildan.hashcode:hashcode-submit-gradle-plugin:0.1.0"
  }
}

apply plugin: "org.hildan.hashcode-submit"

Learn how to apply plugins to subprojects