How do you convert an Android project to a maven project manually?

I have a Maven project. I need to use ScalaTest with it. Please help me to integrate ScalaTest with this Maven project so that I can do some unit testing in Scala?

  • IDE - Eclipse. Source code - Java Unit test- scala

  • Answer:

    I never used ScalaTest personally.  I've been using specs2.  However, I think I can help!  With a Maven project, apparently people have gotten accustomed to running ScalaTest tests with reduced functionality by annotating tests with: @RunWith(classOf[JUnitRunner]) Now there's a wonderful http://www.scalatest.org/user_guide/using_the_scalatest_maven_plugin! It's not a full release yet, but you can probably have good success with it.  That page I linked to gives you an example. Just in case you haven't downloaded a maven plugin before, well, the easy way to do it is through maven itself: http://maven-plugins.sourceforge.net/installing.html That link shows you a maven command, where you pass in the artifact info.  I think this should work: maven -DartifactId=scalatest-maven-plugin -DgroupId=org.scalatest -Dversion=1.0.M2 plugin:download -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository,http://oss.sonatype.org/content/groups/public

Scott Danzig at Quora Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.