netflix.nebula.NebulaKotlinExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nebula-kotlin-plugin Show documentation
Show all versions of nebula-kotlin-plugin Show documentation
Provides the Kotlin plugin via the Gradle plugin portal and allows Kotlin library versions to be omitted
package netflix.nebula
import org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.ListProperty
import org.gradle.api.provider.Property
open class NebulaKotlinExtension(objects: ObjectFactory) {
@Deprecated("Please use stdlibConfigurations instead")
val stdlibConfiguration: Property = objects.property(String::class.java)
val stdlibConfigurations: ListProperty = objects.listProperty(String::class.java).convention(listOf("implementation"))
}