Search Gradle plugins

org.gatored.gatorgradle

Gradle plugin for integrating the auto-grading tool GatorGrader as a runnable, configurable task

https://gatoreducator.github.io/gatorgradle/

Sources: https://github.com/gatored/gatorgradle

Version 0.5.2 (latest)

Created 25 April 2022.

Integrates GatorGrader checking as a task, as used at Allegheny College.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gatored.gatorgradle") version "0.5.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.gatored.gatorgradle:org.gatored.gatorgradle.gradle.plugin:0.5.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.gatored.gatorgradle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gatored.gatorgradle:org.gatored.gatorgradle.gradle.plugin:0.5.2")
      }
    }
    
    apply(plugin = "org.gatored.gatorgradle")
  • Applying plugins to all subprojects .