I would like to create project in scala, with proper directory structure, test directory etc. I'm completly new in Java stuff, so please tell me how to do it? Which tools (maven?) should I use? How to place test and configure them to see my project classes? I use eclipse as IDE. Any help - web resources, links I will appreciate :)

link|improve this question

58% accept rate
Meanwhile I have learned that I should use maven, ant or stb. – Sławosz Nov 6 '11 at 22:06
2  
It's actually sbt and you should use that, not maven or ant (if possible) – Pablo Fernandez Nov 6 '11 at 22:08
I use maven all the time for scala projects because I'm working in a Java environment. It works great. You'd probably have a lot of problems with ant. It's biggest problem is that it is too flexible. – schmmd Nov 8 '11 at 18:25
feedback

2 Answers

up vote 8 down vote accepted

Most scala programmers use sbt, which by the way is also part of the Typesafe Stack

To create a project with it please follow the Getting Started Guide

link|improve this answer
Thanks! I'm reading it and it is great! – Sławosz Nov 6 '11 at 22:13
No problem! :-) – Pablo Fernandez Nov 6 '11 at 22:27
feedback

If you're using Eclipse, you should probably use sbteclipse to generate your Eclipse project files. Then just import it (Import/General/Import existing project).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.