org.jagrkt.submitter
Owner: Alexander Städing
Gradle plugin for submitting source code for the JagrKt AutoGrader
Sources: https://github.com/JagrKt/Submitter
Version 0.4.0 (latest)
0.4.0
Created 15 October 2021.
Gradle plugin for submitting source code for the JagrKt AutoGrader
Using the plugins DSL:
plugins {
id("org.jagrkt.submitter") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jagrkt:plugin-submitter:0.4.0")
}
}
apply(plugin = "org.jagrkt.submitter")
Using the plugins DSL:
plugins {
id "org.jagrkt.submitter" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jagrkt:plugin-submitter:0.4.0"
}
}
apply plugin: "org.jagrkt.submitter"