Search Gradle plugins

Version 2.0.8.6

2.0.8.6

Created 23 October 2019.

Vanderbilt University Plugin used to run assignment tests contained in external JAR files [2.0.8.6]

Add this plugin to your build using the plugins DSL:

plugins {
  id("edu.vanderbilt.grader.plugin") version "2.0.8.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.edu.vanderbilt.grader:plugin:2.0.8.6")
      }
    }
    
    apply(plugin = "edu.vanderbilt.grader.plugin")
  • Applying plugins to all subprojects .