Search Gradle plugins

it.unibo.collektive.collektive-plugin

This plugin enables the Collektive Kotlin compiler plugin.It enables the automatic alignment of aggregate operators in the Collektive DSL.

https://github.com/Collektive/collektive

Sources: https://github.com/Collektive/collektive.git

Version 4.0.0

4.0.0

Created 08 January 2024.

This plugin enables the Collektive Kotlin compiler plugin.It enables the automatic alignment of aggregate operators in the Collektive DSL.

Add this plugin to your build using the plugins DSL:

plugins {
  id("it.unibo.collektive.collektive-plugin") version "4.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("it.unibo.collektive:gradle-plugin:4.0.0")
      }
    }
    
    apply(plugin = "it.unibo.collektive.collektive-plugin")
  • Applying plugins to all subprojects .