Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
if (dependencyNotInNativeApplicationVersionContainer) {
kaxTask = kax.task(
'Ensuring that dependency(ies) is/are not present in native application version container'
)
await Ensure.dependencyNotInNativeApplicationVersionContainer(
dependencyNotInNativeApplicationVersionContainer.dependency,
dependencyNotInNativeApplicationVersionContainer.descriptor,
dependencyNotInNativeApplicationVersionContainer.extraErrorMessage
)
kaxTask.succeed()
}
if (dependencyIsInNativeApplicationVersionContainer) {
kaxTask = kax.task(
'Ensuring that dependency(ies) is/are present in native application version container'
)
await Ensure.dependencyIsInNativeApplicationVersionContainer(
dependencyIsInNativeApplicationVersionContainer.dependency,
dependencyIsInNativeApplicationVersionContainer.descriptor,
dependencyIsInNativeApplicationVersionContainer.extraErrorMessage
)
kaxTask.succeed()
}
if (dependencyIsInNativeApplicationVersionContainerWithDifferentVersion) {
kaxTask = kax.task(
'Ensuring that dependency(ies) is/are present in native application version container with different version(s)'
)
await Ensure.dependencyIsInNativeApplicationVersionContainerWithDifferentVersion(
dependencyIsInNativeApplicationVersionContainerWithDifferentVersion.dependency,
dependencyIsInNativeApplicationVersionContainerWithDifferentVersion.descriptor,
dependencyIsInNativeApplicationVersionContainerWithDifferentVersion.extraErrorMessage
)
kaxTask.succeed()