edu.vanderbilt.grader.plugin
Owner: Monte Creasor
A gradle plugin required by Vanderbilt Coursera assignment projects.
https://github.com/MonteCreasor/grader/
Sources: https://github.com/montecreasor/grader.git
Version 2.0.8.2
2.0.8.2
Created 22 October 2019.
Vanderbilt University Plugin used to run assignment tests contained in external JAR files [2.0.8.2]
Using the plugins DSL:
plugins {
id("edu.vanderbilt.grader.plugin") version "2.0.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.edu.vanderbilt.grader:plugin:2.0.8.2")
}
}
apply(plugin = "edu.vanderbilt.grader.plugin")
Using the plugins DSL:
plugins {
id "edu.vanderbilt.grader.plugin" version "2.0.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.edu.vanderbilt.grader:plugin:2.0.8.2"
}
}
apply plugin: "edu.vanderbilt.grader.plugin"