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 1.1.0 (latest)
1.1.0
Created 20 February 2023.
Provides tasks to help submit answers to Google Hashcode
Using the plugins DSL:
plugins {
id("org.hildan.hashcode-submit") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.hildan.hashcode:hashcode-submit-gradle-plugin:1.1.0")
}
}
apply(plugin = "org.hildan.hashcode-submit")
Using the plugins DSL:
plugins {
id "org.hildan.hashcode-submit" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.hildan.hashcode:hashcode-submit-gradle-plugin:1.1.0"
}
}
apply plugin: "org.hildan.hashcode-submit"