Search Gradle plugins

Version 2.0.4

2.0.4

Created 20 October 2019.

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

Add this plugin to your build using the plugins DSL:

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

See also:

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