When I create a SBT Scala project with Intellij Idea 14.0.3, I end up with the following project structure:
The problem is, src folder is under the project root and then there is the project node at the same level (highlighted in the screenshot)
I could not find any documentation that explains this layout and it is very confusing. I've managed to compile and deploy scala apps but what is that project node doing? What use do I have for it? What artefacts, if any are supposed to go under it?
project folder
inside is supposed to contain the generated assets and some other things, which are used by the build tool sbt in its build process. In simple terms the target folder contains final generated assets after the build process. – sarveshseri