Search Gradle plugins

de.uni-passau.fim.prog1pa

Sets up the Gradle projects used in the Programming 1 exercises.

https://www.fim.uni-passau.de/

Sources: None

Version 3.5.7 (latest)

Created 24 February 2025.

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 "3.5.7"
}

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:3.5.7")
    }
    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:3.5.7")
      }
    }
    
    apply(plugin = "de.uni-passau.fim.prog1pa")
  • Applying plugins to all subprojects .