org.hildan.hashcode-submit
Owner: Joffrey BION
Provides tasks to help submit answers to Google Hashcode
https://github.com/joffrey-bion/hashcode-gradle-plugin
Sources: https://github.com/joffrey-bion/hashcode-gradle-plugin
Version 0.2.1
0.2.1
Created 24 February 2021.
Provides tasks to help submit answers to Google Hashcode
Using the plugins DSL:
plugins {
id("org.hildan.hashcode-submit") version "0.2.1"
}
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.2.1")
}
}
apply(plugin = "org.hildan.hashcode-submit")
Using the plugins DSL:
plugins {
id "org.hildan.hashcode-submit" version "0.2.1"
}
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.2.1"
}
}
apply plugin: "org.hildan.hashcode-submit"