Hi,
Earlier I was using ABCD in my pom.xml file.
I ran “mvn test” in the command line and everything worked fine.
Now, I want to specify class in command line rather than in pom.
I gave the command as,
mvn test -Ds=“ABCD”
but this doesn’t work.
It says, More than 1 simulation to run, need to specify one
What is the correct format to mention the class?
Note - My class is directly available in src/test/scala without any other package declaration.