Search Gradle plugins

Version 2.0.8.1

2.0.8.1

Created 22 October 2019.

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

Add this plugin to your build using the plugins DSL:

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

See also:

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