Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to add scala-test support to intellij

How do I install scala-test with intellij. The video on the intellij website shows them adding a library dependency with scala-test showing up on the list. I don't have that however as I'll need to install scala-test somehow first. The quickstart on the scala website just seems to have a link to a jar file. Do I configure the IDE in some way to point to that jar file as a global library?

like image 948
MonkeyBonkey Avatar asked Jan 20 '14 23:01

MonkeyBonkey


People also ask

How do I add Scala support to 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.

Why Scala class is not showing in IntelliJ?

On the Project pane on the left, right-click src and select New => Scala class. If you don't see Scala class, right-click on HelloWorld and click on Add Framework Support…, select Scala and proceed. If you see Error: library is not specified, you can either click download button, or select the library path manually.


Video Answer


1 Answers

No need for a global library. Intellij IDEA supports adding libraries to your project directly from Maven. Here's how:

  1. Go to File -> Project Structure
  2. Select the Dependencies tab
  3. Click the + sign at the bottom to create a new library
  4. Choose "New Library" and seleect "From Maven" to add a new library from the public Maven repository

This brings up a search dialog which you can use to find the Maven dependency you want. Try searching for "org.scalatest:scalatest" to get the list of scalatest libraries.

like image 164
swartzrock Avatar answered Nov 16 '22 00:11

swartzrock