15

When creating a new Scala project using IntelliJ, i get the scaladoc warning.

How can this be rectified please?

enter image description here

James Raitsev
  • 92,517
  • 154
  • 335
  • 470
  • possible duplicate of [Setting up scala with IntelliJ](http://stackoverflow.com/questions/10827017/setting-up-scala-with-intellij), see [this comment](http://stackoverflow.com/questions/10827017/setting-up-scala-with-intellij#comment14122493_10828320). – CrazyCoder Dec 08 '12 at 21:21

1 Answers1

9

I'll go ahead and answer my own question here

  1. Navigate to Scala download page and download appropriate API
  2. Unpack the archive and move contents into your Scala's installation (I ran sudo mkdir scaladoc to create /Library/Scala/2.10.0-RC2/scaladoc)
  3. Update module to point to the right location

enter image description here

You can quickly verify installation by typing

object Main extends App {
}

Once you Ctrl+J on the App, you should see the scaladoc which matches the online version

enter image description here

Valery Viktorovsky
  • 6,487
  • 3
  • 39
  • 47
James Raitsev
  • 92,517
  • 154
  • 335
  • 470