-
- All Implemented Interfaces:
-
org.gradle.api.Named
,org.jetbrains.kotlin.gradle.plugin.HasKotlinDependencies
,org.jetbrains.kotlin.gradle.plugin.mpp.pm20.GradleKpmDependencyConfigurations
,org.jetbrains.kotlin.gradle.plugin.mpp.pm20.GradleKpmFragment
,org.jetbrains.kotlin.gradle.plugin.mpp.pm20.GradleKpmFragmentDependencyConfigurations
,org.jetbrains.kotlin.project.model.KpmFragment
,org.jetbrains.kotlin.project.model.KpmVariant
public interface GradleKpmVariant implements GradleKpmFragment, KpmVariant
-
-
Method Summary
-
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.mpp.pm20.GradleKpmVariant
dependencies, getName, refines, refines
-
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.mpp.pm20.GradleKpmFragment
dependencies
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getPlatformType
abstract KotlinPlatformType getPlatformType()
-
getCompileDependenciesConfiguration
abstract Configuration getCompileDependenciesConfiguration()
-
getCompileDependencyFiles
abstract FileCollection getCompileDependencyFiles()
-
setCompileDependencyFiles
abstract Unit setCompileDependencyFiles(FileCollection compileDependencyFiles)
-
getCompilationOutputs
abstract KotlinCompilationOutput getCompilationOutputs()
-
getSourceArchiveTaskName
abstract String getSourceArchiveTaskName()
-
getApiElementsConfiguration
abstract Configuration getApiElementsConfiguration()
-
getGradleVariantNames
abstract Set<String> getGradleVariantNames()
-
getKotlinSourceRoots
abstract SourceDirectorySet getKotlinSourceRoots()
-
getContainingModule
abstract GradleKpmModule getContainingModule()
-
getLanguageSettings
abstract LanguageSettingsBuilder getLanguageSettings()
-
getProject
Project getProject()
-
getExtras
abstract MutableExtras getExtras()
-
getDeclaredRefinesDependencies
abstract Iterable<GradleKpmFragment> getDeclaredRefinesDependencies()
-
getRefinesClosure
Set<GradleKpmFragment> getRefinesClosure()
-
getWithRefinesClosure
Set<GradleKpmFragment> getWithRefinesClosure()
-
getApiConfigurationName
String getApiConfigurationName()
-
getImplementationConfigurationName
String getImplementationConfigurationName()
-
getCompileOnlyConfigurationName
String getCompileOnlyConfigurationName()
-
getRuntimeOnlyConfigurationName
String getRuntimeOnlyConfigurationName()
-
getRelatedConfigurationNames
List<String> getRelatedConfigurationNames()
-
getDeclaredModuleDependencies
abstract Iterable<KpmModuleDependency> getDeclaredModuleDependencies()
-
getFragmentName
abstract String getFragmentName()
-
getTransitiveApiConfiguration
abstract Configuration getTransitiveApiConfiguration()
This configuration includes the dependencies from the refines-parents
-
getTransitiveImplementationConfiguration
abstract Configuration getTransitiveImplementationConfiguration()
This configuration includes the dependencies from the refines-parents
-
getTransitiveRuntimeOnlyConfiguration
abstract Configuration getTransitiveRuntimeOnlyConfiguration()
This configuration includes the dependencies from the refines-parents
-
getApiConfiguration
abstract Configuration getApiConfiguration()
-
getImplementationConfiguration
abstract Configuration getImplementationConfiguration()
-
getCompileOnlyConfiguration
abstract Configuration getCompileOnlyConfiguration()
-
getRuntimeOnlyConfiguration
abstract Configuration getRuntimeOnlyConfiguration()
-
getVariantAttributes
abstract Map<KotlinAttributeKey, String> getVariantAttributes()
-
-
-
-