public interface JniLibraryDependencies
| Modifier and Type | Method and Description |
|---|---|
void |
api(Object notation)
Adds an JVM API dependency to this library.
|
void |
api(Object notation,
Action<? super ExternalModuleDependency> action)
Adds an JVM API dependency to this library.
|
void |
jvmImplementation(Object notation)
Adds an JVM implementation dependency to this library.
|
void |
jvmImplementation(Object notation,
Action<? super ExternalModuleDependency> action)
Adds an JVM implementation dependency to this library.
|
void |
nativeImplementation(Object notation)
Adds an native implementation dependency to this component.
|
void |
nativeImplementation(Object notation,
Action<? super ExternalModuleDependency> action)
Adds an native implementation dependency to this component.
|
void api(Object notation)
notation - The dependency notation, as per DependencyHandler.create(Object).void api(Object notation, Action<? super ExternalModuleDependency> action)
notation - The dependency notation, as per DependencyHandler.create(Object).action - The action to run to configure the dependency.void jvmImplementation(Object notation)
notation - The dependency notation, as per DependencyHandler.create(Object).void jvmImplementation(Object notation, Action<? super ExternalModuleDependency> action)
notation - The dependency notation, as per DependencyHandler.create(Object).action - The action to run to configure the dependency.void nativeImplementation(Object notation)
notation - The dependency notation, as per DependencyHandler.create(Object).void nativeImplementation(Object notation, Action<? super ExternalModuleDependency> action)
notation - The dependency notation, as per DependencyHandler.create(Object).action - The action to run to configure the dependency.