commonMain.co.touchlab.skie.plugin.configuration.SkieSwiftBundlingConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin-api-jvm Show documentation
Show all versions of gradle-plugin-api-jvm Show documentation
Public API for SKIE Gradle plugin.
The newest version!
@file:Suppress("MemberVisibilityCanBePrivate", "unused")
package co.touchlab.skie.plugin.configuration
import org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.Property
import javax.inject.Inject
abstract class SkieSwiftBundlingConfiguration @Inject constructor(objects: ObjectFactory) {
/**
* Enables Swift bundling for this module.
*/
val enabled: Property = objects.property(Boolean::class.java).convention(true)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy