io.github.krakowski.challenge
Owner: Filip Krakowski
Uploads challenges to the educode platform
https://github.com/hhu-educode/gradle-challenge
Sources: https://github.com/hhu-educode/gradle-challenge.git
Version 0.2.3 (latest)
0.2.3
Created 10 November 2019.
Uploads challenges to the educode platform
Using the plugins DSL:
plugins {
id("io.github.krakowski.challenge") version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.krakowski:gradle-challenge:0.2.3")
}
}
apply(plugin = "io.github.krakowski.challenge")
Using the plugins DSL:
plugins {
id "io.github.krakowski.challenge" version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.krakowski:gradle-challenge:0.2.3"
}
}
apply plugin: "io.github.krakowski.challenge"