sbt-idea
sbt-idea copied to clipboard
A simple-build-tool (sbt) plugin/processor for creating IntelliJ IDEA project files
I am running idea with Java 8, but would like my project to use Java 7. I can't figure out how to do that. Changing the project to use JDK...
Error while importing sbt project: [info] Loading settings for project global-plugins from idea.sbt ... [info] Loading global plugins from C:\Users\Administrator\.sbt\1.0\plugins [info] Loading settings for project test-build from plugins.sbt ... [info]...
:shipit:
The sbt idea plugin provides a command, not a task, which means you can't arbitrarily override any setting/task it depends on. An alternative to this, would be to define a...
Sorry if this is the wrong place to ask this, but I wondered if the sbt-idea plugin could somehow solve this problem I'm having. I have an Android project that...
Given a project with a dependency that is packaged as a bundle, eg: ``` lazy val tikaParser = "org.apache.tika" % "tika-parsers" % "1.0" ``` (tika-parsers is packaged as a bundle,...
For example the sbt-wartremover plugin (added via plugins.sbt with this line: addSbtPlugin("org.brianmckenna" % "sbt-wartremover" % "0.11") ) shows as following in all project .iml files: ``` ``` I think it...
Using sbt 0.13.8, OS X 10.10.4 and Java JDK 1.8.0_51, I get this error when running `sbt` in the directory to which this project has been cloned: ``` error: error...
It would be great and be much appreciated if, for SBT newbies like me, readme.md could clearly spell out the differences between the SBT functionality offered by this plugin where...
heres my build.sbt ``` java name := "ProjectBartolay" version := "0.1" scalaVersion := "2.10.2" ``` and plugins.sbt ``` java addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.5.1") addSbtPlugin("junit" % "junit" % "4.11") addSbtPlugin("org.scalatest"...