org.gatored.gatorgradle
Owner: Saejin Mahlau-Heinert
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)
0.5.2
Created 25 April 2022.
Integrates GatorGrader checking as a task, as used at Allegheny College.
Using the plugins DSL:
plugins {
id("org.gatored.gatorgradle") version "0.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.gatored:gatorgradle:0.5.2")
}
}
apply(plugin = "org.gatored.gatorgradle")
Using the plugins DSL:
plugins {
id "org.gatored.gatorgradle" version "0.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.gatored:gatorgradle:0.5.2"
}
}
apply plugin: "org.gatored.gatorgradle"