'out' folder's path
Answered
Hello.
I made a IntelliJ Platform Plugin project(New Project - Gradle - Java/IntelliJ Platform Plugin) with this directory structure:
Sample-Project (Empty Project)
ㄴ.idea
ㄴsampleproject (IntelliJ Platform Plugin Project)
In Project Structure window, 'out' folder's path is displayed like this:
Sample-Project\out
But if I run a test code, the 'out' folder is made under Sample-Project\sampleproject.
I want to know why is this happen and how to fix this.
Please sign in to leave a comment.
See https://stackoverflow.com/a/46035904/104891.
After checking Delegate IDE build/run actions to gradle option, following compile error message comes out when non-ASCII strings are included.
error: unmappable character for encoding MS949
I've added -encoding UTF-8 option in File | Settings | Build, Execution, Deployment | Compiler | Java Compiler | Additional command line parameters but it doesn't help.
How can I fix this?
Does your build work outside of IntelliJ IDEA?
When the build is delegated to Gradle, Java compiler options have no effect, you may need to adjust Gradle compiler options via build.gradle file.