Reputation: 2996
I'm completely new to development using Play or IntelliJ for that matter. I've created a simple HelloWorld application using Activator, and this is an sbt
project.
I've been trying to import this to IntelliJ and this is the screen I'm stuck at: https://www.dropbox.com/s/we1a4a3184sojvb/Screenshot%202014-07-24%2016.57.11.png
In almost all tutorials I've been through online, I've seen people using an sbt
option on the import screen. I've installed the SBT plugin as well, but that hasn't helped. I've restarted IntelliJ several times to no avail.
Where am I going wrong?
I'm running 13.1.4
with the SBT
plugin installed.
Upvotes: 19
Views: 51734
Reputation: 157
IntelliJ IDEA 2022.2.1 (Ultimate Edition)
scala plugin: 2022.2.12
sbt version: 1.7.1
The number of steps to make it work may vary.
Upvotes: 1
Reputation: 1
Make sure that your java path is correct (IntelliJ can use other path than system defined)
Preferences -> Build, Execution, Deployment -> sbt -> JVM - choose a correct JRE
Upvotes: 0
Reputation: 26464
I had a similar problem which came from a different place than the other solutions here so adding it in case it occurs for others.
In my case the problem was caused by accidentally opening the IdeaProjects directory. When you do this, it creates the .Idea folder in that directory, and populates it as a project. This apparently also confuses the set import.
The solution is to remove the .Idea folder and open (not import) the directory again.
Upvotes: 5
Reputation: 22156
I had this error when importing a new module from existing sources.
SBT
tab.Upvotes: 39
Reputation: 897
I encountered the same error when I was trying to import a new scala project A to an existing IntelliJ project B as a module. I solved the problem by following step below:
Upvotes: 4
Reputation: 2996
After a series of struggles, I must say something weird solved this problem – moving to IntelliJ IDEA Ultimate. That has built in Play application support and can run/debug/test the application out of the box, which is very handy.
All I can say after this experience was that JetBrains wants you to upgrade to Ultimate if you want things to work right out of the box.
I'm sure there are ways to get this working with CE also, but I wasn't successful with that.
Upvotes: 2
Reputation: 1159
This issue is solved in the latest updates of the SBT and Scala plugins.
Upvotes: 0
Reputation: 1997
Import the project
build.sbt
file in the right place, so that IntelliJ can find it as an SBT project.Upvotes: 0
Reputation: 3775
/your-project-folder
./activator
idea
. It will generate IDEA project.File->Open..
project in IDEA.Upvotes: 9