Package org.gradle.api.artifacts.dsl
Interface ExternalModuleDependencyVariantSpec
public interface ExternalModuleDependencyVariantSpec
The specification of a dependency variant. Some dependencies can be fined tuned
to select a particular variant. For example, one might want to select the test
fixtures of a target component, or a specific classifier.
- Since:
- 6.8
-
Method Summary
Modifier and TypeMethodDescriptionvoid
artifactType
(String artifactType) Configures the artifact type of this dependencyvoid
classifier
(String classifier) Configures the classifier of this dependencyvoid
platform()
Configures the dependency to select the "platform" variant.void
Configures the dependency to select the test fixtures capability.
-
Method Details
-
platform
void platform()Configures the dependency to select the "platform" variant. -
testFixtures
void testFixtures()Configures the dependency to select the test fixtures capability. -
classifier
Configures the classifier of this dependency -
artifactType
Configures the artifact type of this dependency
-