Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create Scala project in proper way?

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 :)

like image 644
Sławosz Avatar asked Nov 06 '11 21:11

Sławosz


People also ask

How do I create a sbt file?

Create or open your sbt project. In the Project tool window, in the source root directory, locate the build. properties file and open it in the editor. In the editor explicitly specify the version of sbt that you want to use in the project.

How do I create a Scala file in IntelliJ?

To install Scala plugin, press Ctrl+Alt+S , open the Plugins page, browse repositories to locate the Scala plugin, click Install and restart IntelliJ IDEA. Now you can successfully check out from VCS, create, or import Scala projects.


1 Answers

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

like image 170
Pablo Fernandez Avatar answered Sep 29 '22 05:09

Pablo Fernandez