All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.autonomousapps.kit.gradle.Plugins.kt Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.kit.gradle

import com.autonomousapps.kit.render.Element
import com.autonomousapps.kit.render.Scribe

public class Plugins(
  public val plugins: MutableList = mutableListOf(),
) : Element.Block {

  public constructor(vararg plugins: Plugin) : this(plugins.toMutableList())

  override val name: String = "plugins"

  public val isEmpty: Boolean = plugins.isEmpty()

  override fun render(scribe: Scribe): String = scribe.block(this) { s ->
    plugins.forEach { it.render(s) }
  }

  public companion object {
    @JvmField
    public val EMPTY: Plugins = Plugins()
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy