fun verifyPlugin()

in src/main/kotlin/org/jetbrains/intellij/platform/gradle/extensions/IntelliJPlatformExtension.kt [216:225]


    fun verifyPlugin(
        @DelegatesTo(
            value = PluginVerification::class,
            strategy = Closure.DELEGATE_FIRST
        ) action: Closure<*>,
    ) {
        action.delegate = pluginVerification
        action.resolveStrategy = Closure.DELEGATE_FIRST
        action.call()
    }