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

Add this plugin to your build using the plugins DSL:

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

See also:

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