“Cannot start compilation: the output path is not specified for module…”

后端 未结 12 2395
忘掉有多难
忘掉有多难 2020-12-13 08:43

I have a very simple Java + Gradle project. It builds fine. It runs fine from the shell with \"gradle run\". However, if I try to run inside of IntelliJ, I get:



        
12条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-13 09:03

    While configuring idea plugin in gradle, you should define output directories as follows.

    idea{
        module{
            inheritOutputDirs = false
            outputDir = compileJava.destinationDir
            testOutputDir = compileTestJava.destinationDir
        }
    }
    

提交回复
热议问题