com.javiersc.hubdle.project.extensions.kotlin.MainAndTestKotlinSourceSetsOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hubdle-gradle-plugin Show documentation
Show all versions of hubdle-gradle-plugin Show documentation
Single entry point to configurate any kind of project
package com.javiersc.hubdle.project.extensions.kotlin
import org.gradle.api.Action
public interface MainAndTestKotlinSourceSetsOptions {
public fun main(action: Action = Action {})
public fun test(action: Action = Action {})
}