Sets up the Gradle projects used in the Programming 1 exercises.
https://www.fim.uni-passau.de/
Sources: None
Version 1.0.5
Created 22 May 2017.
Sets up the Gradle projects used in the Programming 1 exercises.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.uni-passau.fim.prog1pa") version "1.0.5"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("de.uni-passau.fim.prog1pa:de.uni-passau.fim.prog1pa.gradle.plugin:1.0.5") }It can then be applied in the precompiled script plugin:plugins { id("de.uni-passau.fim.prog1pa") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.uni-passau.fim.prog1pa:de.uni-passau.fim.prog1pa.gradle.plugin:1.0.5") } } apply(plugin = "de.uni-passau.fim.prog1pa") - Applying plugins to all subprojects .