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.2.1-164

Created 28 August 2018.

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

Using the plugins DSL:

plugins {
  id("org.gatored.gatorgradle") version "0.2.1-164"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.gatored:gatorgradle:0.2.1-164")
  }
}

apply(plugin = "org.gatored.gatorgradle")

Using the plugins DSL:

plugins {
  id "org.gatored.gatorgradle" version "0.2.1-164"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.gatored:gatorgradle:0.2.1-164"
  }
}

apply plugin: "org.gatored.gatorgradle"

Learn how to apply plugins to subprojects