A simple-build-tool (sbt) plugin/processor for creating IntelliJ IDEA project files

learn more… | top users | synonyms

2
votes
0answers
37 views

Syntax highlighting for *.sbt files in IntelliJ IDEA

I'm working on a potential module for the Lift Web framework using Scala, SBT 0.12, and IntelliJ IDEA 12.1, and I would like to have syntax highlighting for *.sbt files in IDEA (code awareness would ...
1
vote
0answers
22 views

Setting an sbt plugin's log level

Is it possible to set the logging level for sbt plugins? I'm using the sbt-idea plugin and in my metaproject and main project, I have a setting for logLevel := Level.Warn. This is effective at ...
0
votes
2answers
194 views

sbt version and scala version. project configuration for intellij idea with sbt-idea plugin

I follow these steps to configure a project for IntelliJ idea. addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.2.0") I use sbt-idea for sbt version 0.12 with fixed bug for Idea. When I type ...
1
vote
2answers
800 views

How to setup IntelliJ + Scala + specs + sbt project?

I am trying to setup an empty sbt project with specs2 for Scala (2.10) with IntelliJ (12.1) support and I am getting this error when I do sbt compile on empty project directory: % sbt compile ...
2
votes
3answers
1k views

How do I get Intellij IDEA 12.0 to work with Play Framework 2.1.0 app and Scala 2.10.0?

So I've been trying to get IDEA 12.0 to work with Play 2.1.0 and Scala 2.10.0. I've just about given up because it's not working for me the way I want it to. Here is a copy of my build.properties, ...
0
votes
2answers
460 views

sbt-idea unresolved

I am creating a new SBT project and here are the contents of my SBT files: build.properties sbt.version=0.12.0 plugins.sbt addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.2.0") build.sbt ...
4
votes
2answers
1k views

How does one get sbt-idea to work in scala-2.10 project?

I had a lot of trouble getting sbt-idea to work in my Scala 2.10 project. I tried compiling sbt-idea from its git repo, making sure that to have set scalaVersion := "2.10.0-RC5" in ...
-1
votes
1answer
550 views

Want Ideas for Final year project? [closed]

I am going to present my proposal for my final year project .And want some professional suggestions /ideas ?Kindly reply me with good and interesting ideas and Also that can be managed in six months ...
1
vote
1answer
162 views

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 ...
1
vote
0answers
132 views

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 ...
3
votes
1answer
884 views

Understanding How SBT, Scala, SBT-Idea and Play Framework Work Together

I am new and had built some simple Scala applications / tutorials using SBT. I move on to Play framework and generated an empty project using g8 typesafehub/play-scala. I did a few tests to make sure ...
8
votes
1answer
1k views

Play Idea failing - no sbt-idea plugin for this version of sbt 0.11.3

I'm stuck. I've on a Mac and have installed the typesafe stack with brew I've created a new play project using play new appname and all is fine. I'm trying to import it into intelliJ using play ...
2
votes
3answers
441 views

How to attach SBT classes to Intellij Idea?

I have probably a silly problem. I would like to write SBT build script (Build.scala) in IntelliJ Idea but IDE does not recognize SBT classes (Build, Project, etc.). I attached sbt-launch.jar to the ...
1
vote
1answer
317 views

sbt-idea & sub-projects

If, say, your sbt project contained 50 sub projects. Is it possible to generate an intellij project where you specify a set of the sub projects comes from your repo and for the other set of sub ...
5
votes
1answer
689 views

IntelliJ, Akka and Configuration files

When using akka, I place akka.conf in src/main/resources. When I run through sbt, the akka.conf is correctly recognized. But not when I run through IntelliJ (even after a gen-idea). What is the ...
3
votes
1answer
284 views

Can sbt-idea generate project files based on existing ones?

I have been using sbt and sbt-idea for a while and for the most part it works perfectly - unfortunately there is one key use case where it doesn't. The use case is when you are working on a project ...
2
votes
2answers
752 views

Sbt Unresolved Dependencies (Not a valid command: gen-idea)

I'm trying to get sbt to generate Intellij IDEA project files using the sbt-idea plugin as described here. [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED ...
48
votes
1answer
2k views

How to manage multiple interdependent modules with SBT and IntelliJ IDEA?

I'm developing several modules with dependencies among them, and would like to work with them all together in one IDEA project. I'm using sbt-idea to generate IDEA projects from the sbt build ...
2
votes
1answer
361 views

Why can't sbt 0.11 sbt-idea plugin generate a project correctly in my case? (details inside)

I've installed sbt 0.11 sbt-idea as its documentation says. It seems to work, but... It doesn't see a project's name (even having the project named, Idea project generated is named default-11eed1) ...
1
vote
3answers
279 views

SBT 0.7.7 or 0.10.1 for wicket webapp project using jetty for dev

I'm new to Scala and wanting to develop a simple little Scala Wicket webapp to try it out. I would like to use Jetty as the server for my dev purposes and SBT as the build tool (definitely not maven ...
9
votes
3answers
4k views

Beginner's guide to SBT 0.10 and IDEA

I'm new to SBT and am unsure how to get a project started. Can someone point me to a beginner's guide to creating a Hello World type project, or give me some clues? My preferred IDE is IDEA. I have ...
7
votes
1answer
2k views

lift does not build with sbt?

i am following the steps for sbt 0.10 on assembla lift wiki and get the following error: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] ...
1
vote
1answer
978 views

Starting a new project with sbt-idea plugin

I am new to sbt and the sbt-idea plugin. I created a new project with the plugin and when opening the generated .idea file inside IntelliJ and compiling I am getting that "please specify compiler in ...