com.autonomousapps.kit.gradle.Plugins.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-testkit-support Show documentation
Show all versions of gradle-testkit-support Show documentation
A DSL for building test fixtures with Gradle TestKit
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