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 0.0.4.1
0.0.4.1
Created 27 June 2017.
A gradle plugin required by Vanderbilt Coursera assignment projects.
Using the plugins DSL:
plugins {
id("edu.vanderbilt.grader.plugin") version "0.0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.edu.vanderbilt.grader:plugin:0.0.4.1")
}
}
apply(plugin = "edu.vanderbilt.grader.plugin")
Using the plugins DSL:
plugins {
id "edu.vanderbilt.grader.plugin" version "0.0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.edu.vanderbilt.grader:plugin:0.0.4.1"
}
}
apply plugin: "edu.vanderbilt.grader.plugin"