sbt-idea icon indicating copy to clipboard operation
sbt-idea copied to clipboard

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

Results 94 sbt-idea issues
Sort by recently updated
recently updated
newest added

Is it possible to configure the folders of the sbt build module which are generated marked as Sources in IDEA under `Project Structure` -> `Modules` -> `the SBT build module`...

I have the a problem with the scala compiler library in IntelliJ. When i do a gen-idea, my project contains both the Libraries `SBT: scala:2.10.2` and `SBT: scala:2.10.3`. (My projects...

Each time I update my SBT configuration and run `gen-idea` I am unable to build my project in IDEA. The problem is that the `root-build` project has the same location...

The reason for that exception was the default encoding in xml.XML.encoding (ISO-8859-1) that is used in OutputUtil. ``` val w = Channels.newWriter(fos.getChannel(), XML.encoding) ``` Changing it to "UTF-8" instead solved...

Normally for play projects the generated source root is at `{project}/target/scala-2.10/src_managed/main` and this root is correctly detected by sbt-idea, but in addition to this root, it also adds more: `{project}/target/scala-2.10/src_managed/main/com`...

I have: > show idea-exclude-folders > [info] subproject1/_:idea-exclude-folders > [info] List() > [info] subproject2/_:idea-exclude-folders > [info] List() > [info] myproject/*:idea-exclude-folders > [info] ArraySeq(.history, .bak, .idea, .idea_modules) And yet I get...

I'm playing with getting the android sbt plugin and idea working together. (Today, I realized that there was a much newer version of sbt-idea than what I was playing with,...

When I run sbt gen-idea, the building process hangs on the line [info] downloading http://repo1.maven.org/maven2/org/scala-lang/scala-reflect/2.10.2/scala-reflect-2.10.2-javadoc.jar ... No warnings, no errors, just hanging and does nothing else. The file scala-reflect-2.10.2-javadoc.jar exists...

HI, I setup a multi-project builds, and generate IDEA project with sbt-idea. And run a main class in IDEA, see the following errors: scala: Output path /home/taot/github/code-snippets/sbt/test-multi/project/target/idea-test-classes is shared between:...

From http://blog.jetbrains.com/scala/2013/11/18/built-in-sbt-support-in-intellij-idea-13/ they added a feature that keeps intellij external libraries in sync with the the libraryDependencies key. It seems is as simple as addding an sbt.xml file to the...