I am using the Scala IDE. I have created one Scala project and wrote simple scala object i.e.
object Test {
def main(args: Array[String]): Unit = {
eprintln("hi")
}}
It's running as expected.
After that I have converted my project to a maven project.
I did Clean and install.
after that if I am trying to run my scala class, I am getting below error:
Error: Could not find or load main class Test
How can I solve this?