com.autonomousapps.kit.Subproject.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
package com.autonomousapps.kit
import com.autonomousapps.kit.gradle.BuildScript
/**
* A Gradle project (module) consists of:
*
* 1. A [name] (path)
* 2. [Build script][buildScript]
* 3. (Optionally) [sources]
* 4. (Optionally) arbitrary [files]
* 5. A JVM [source set][variant] or Android [variant](https://developer.android.com/build/build-variants) name.
* Defaults to "main".
*/
public open class Subproject(
public val name: String,
public val includedBuild: String? = null,
public val buildScript: BuildScript,
public val sources: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy