https://kotlinlang.org logo
Title
j

jtonic

10/14/2017, 11:11 AM
Hi, Could you please shed a light why the application:run task is available in the parent module. I did not declare or enable application plugin, but it is available (at least I see it in the gradle idea tool window). Is this plugin enabled by default? gradle.build.kts (only the important part shown)
plugins {
    base
}
Thank you in advance for your help. Antonel
Hi, I found out the explanation when I ran the run task from the parent directory. The run delegates to run task of the whatever child modules the application plugin is activated. And in my case one of the child module has an incorrect configuration of it (the main class was not configured).