-
- All Implemented Interfaces:
-
org.gradle.api.Named,org.gradle.api.attributes.HasAttributes,org.jetbrains.kotlin.gradle.plugin.KotlinTarget
public interface KotlinTargetWithTests<E extends KotlinExecution.ExecutionSource, T extends KotlinTargetTestRun<E>> implements KotlinTarget
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classKotlinTargetWithTests.Companion
-
Method Summary
Modifier and Type Method Description abstract NamedDomainObjectContainer<T>getTestRuns()The container with the test run executions. abstract StringgetTargetName()StringgetDisambiguationClassifier()abstract BooleangetUseDisambiguationClassifierAsSourceSetNamePrefix()abstract StringgetOverrideDisambiguationClassifierOnIdeImport()abstract KotlinPlatformTypegetPlatformType()abstract NamedDomainObjectContainer<out KotlinCompilation<KotlinCommonOptions>>getCompilations()abstract ProjectgetProject()abstract StringgetArtifactsTaskName()abstract StringgetDefaultConfigurationName()abstract StringgetApiElementsConfigurationName()abstract StringgetRuntimeElementsConfigurationName()abstract BooleangetPublishable()abstract Set<SoftwareComponent>getComponents()abstract KotlinTargetPreset<out KotlinTarget>getPreset()-
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinTargetWithTests
attributes, attributes, getName, mavenPublication, mavenPublication -
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinTarget
getAttributes -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getTestRuns
abstract NamedDomainObjectContainer<T> getTestRuns()
The container with the test run executions. A target may automatically create and configure a test run by the name DEFAULT_TEST_RUN_NAME.
-
getTargetName
abstract String getTargetName()
-
getDisambiguationClassifier
String getDisambiguationClassifier()
-
getUseDisambiguationClassifierAsSourceSetNamePrefix
abstract Boolean getUseDisambiguationClassifierAsSourceSetNamePrefix()
-
getOverrideDisambiguationClassifierOnIdeImport
abstract String getOverrideDisambiguationClassifierOnIdeImport()
-
getPlatformType
abstract KotlinPlatformType getPlatformType()
-
getCompilations
abstract NamedDomainObjectContainer<out KotlinCompilation<KotlinCommonOptions>> getCompilations()
-
getProject
abstract Project getProject()
-
getArtifactsTaskName
abstract String getArtifactsTaskName()
-
getDefaultConfigurationName
abstract String getDefaultConfigurationName()
-
getApiElementsConfigurationName
abstract String getApiElementsConfigurationName()
-
getRuntimeElementsConfigurationName
abstract String getRuntimeElementsConfigurationName()
-
getPublishable
abstract Boolean getPublishable()
-
getComponents
abstract Set<SoftwareComponent> getComponents()
-
getPreset
abstract KotlinTargetPreset<out KotlinTarget> getPreset()
-
-
-
-