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 7.0.2

7.0.2

Created 06 February 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("it.unibo.collektive:gradle-plugin:7.0.2")
  }
}

apply(plugin = "it.unibo.collektive.collektive-plugin")

Using the plugins DSL:

plugins {
  id "it.unibo.collektive.collektive-plugin" version "7.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "it.unibo.collektive:gradle-plugin:7.0.2"
  }
}

apply plugin: "it.unibo.collektive.collektive-plugin"

Learn how to apply plugins to subprojects