A simple-build-tool (sbt) plugin/processor for creating IntelliJ IDEA project files
Questions tagged [sbt-idea]
49 questions
1
vote
2 answers
sbt-idea - SBT 0.12.4+ required
I am using IntelligJ
IntelliJ IDEA 2016.2.4 Build #IC-162.2032.8, built on September 9,
2016 JRE: 1.8.0_101-b13 amd64 JVM: Java HotSpot(TM) 64-Bit Server VM
by Oracle Corporation
I am tring to import my existing scala projects which using SBT…

Sun
- 3,444
- 7
- 53
- 83
1
vote
1 answer
SBT eclipse command issue on multi-project
I imported an eclipse project from an sbt multi project.
The sbt eclipse command did complete normally
But the resulting eclipse project is full of errors as dependency between sub projects are not seen.
I think the sbt plugin is failing on multi…

Serge B
- 251
- 1
- 2
- 3
1
vote
1 answer
SBT project in IDEA 14 does not work on Ubuntu
My SBT project imports itself perfectly to IDEA IDE on MacOS, but on the Ubuntu it shows dozens of errors about not being able to resolve symbols.
for example:
import play.api.mvc.Action
reports Unused import statement from withing IDEA
and…

valgog
- 2,738
- 1
- 20
- 16
1
vote
1 answer
How to fix Scala compilation errors? Unable to compile in idea 13.1.5
I'm trying to create a very simple scala application in idea 13.1.5.
java version "1.7.0_67"
Java(TM) SE Runtime Environment (build 1.7.0_67-b01)
Java HotSpot(TM) 64-Bit Server VM (build 24.65-b04, mixed mode)
Scala Version is 2.11.2-1
During the…

hseagle
- 151
- 1
- 4
1
vote
2 answers
Why does sbt insist on using 0.1-SNAPSHOT for project version?
I am using IDEA 13.1.5 Ultimate edition and sbt 0.13.5 (per Play Activator default config) and here's my current build.sbt:
name := """my-first-app"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file("."))
.enablePlugins(PlayJava)
…

quantum
- 3,000
- 5
- 41
- 56
1
vote
2 answers
Why does Typesafe Activator not set up documentation for dependencies in IDEA?
I've noticed that if I create a new IntelliJ IDEA project with SBT and gen-idea It will set up the project structure to have the class jars, source jars and javadocs jars.
However if I use a Typesafe Activator template and run either gen-idea from…

Arne Claassen
- 14,088
- 5
- 67
- 106
1
vote
2 answers
Why does routes file point to incorrect controller.Application in play jar after importing Play project to IDEA 13?
I've been trying to import a Play2 project in IntelliJ IDEA 13. It seemed to have imported just fine until I tried navigating around the code and realized that the routes file points to the controller.Application present in play jar bundled with sbt…

mindreader
- 1,763
- 1
- 20
- 35
1
vote
2 answers
Play 2 - How to add a project (library) as a dependency
My team is looking to re-architect one of our applications in Play2. The application is split up into two web applications that sit on top of the same database: client(read) and admin(read/write).
In the new architecture, we're looking to build two…

Daniel Martin
- 135
- 2
- 15
1
vote
1 answer
How to set options for the sbt idea plugin in Play2 framework?
I know that the play framework has their own custom sbt plugin to generate Idea project files and I'm trying to find a way to configure it. I see there are some options available, for instance when I type:
[my-play-project] $…

Igor Rumiha
- 407
- 3
- 10
1
vote
0 answers
How to add library to an Intellij IDEA sbt Scala Android project?
When I'm trying to compile my sbt project in console I get the following error:
compile
[info] Wrote D:\androidProjects\myfootball\target\scala-2.9.1\src_managed\main\scala\my\android\myfootball\TR.scala
[info] Compiling 4 Scala sources and 1…

Андрюшка Спиридонов
- 11
- 1
0
votes
0 answers
How do I get this done correctly using AWS Cloudshell?
[cloudshell-user@ip-10-0-6-157 ~]$ ecs-cli up --keypair sbti --capability-iam --size 1 --instance-type t2.medium --cluster-config sbti-ecs-conf
FATA[0000] Error executing 'up': A CloudFormation stack already exists for the cluster…
0
votes
1 answer
Why do SBT projects in IntelliJ IDEA break and require re-creation?
When using SBT with IntelliJ IDEA, often the project will get in to a bad state where compiler errors occur where they shouldn’t, when they don’t occur in the terminal.
A project will sbt compile in a terminal without issue, but will remain all…

Neil
- 24,551
- 15
- 60
- 81
0
votes
1 answer
how to set up an automatic compilation of test classes?
Intellij idea not compiles special classes when running test. Now I run the compilation manually via activator console. How can I customize the intellij idea to run automatically when start a compilation of test?

Sergey
- 133
- 1
- 8
0
votes
1 answer
Create idea project using gen-idea
I'm new to the sbt and scala. I've installed sbt and sbt-idea. How can I create an idea project now ?

Shashika
- 1,606
- 6
- 28
- 47
0
votes
2 answers
Play Framework - IntelliJ Issues - IDE suggestions?
I'm using IntelliJ IDE to set up a Play project and do my development. I cannot create a new project nor can I get an existing project (e.g.: websocket-chat) compile in IntelliJ.
I posted this on IntelliJ forums…

dsatish
- 1,041
- 15
- 27