running a maven scala project

Viewed 20846

Im starting to learn scala and mongo , my IDE is intellij IDEA. I created a scala project using

mvn:archetype-generate

and typed a simple hello world program in the IDEA with some arithmetic options such as

println(5)
val i = 1+2
println(i)

Then i compiled it using

mvn compile

It said

build success

But now how should i execute my application and verify the output. There isn't a single article which explains how to start off with scala,maven,idea and i am entirely new to all of this. any help would be useful for me.

1 Answers
Related