Search Gradle plugins

Version 1.1.0 (latest)

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"

Learn how to apply plugins to subprojects