Questions tagged [sbt-idea]

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

49 questions
0
votes
1 answer

adding google analytics jar via SBT to scala project

I want to add google analytics package/jar to a scala project with SBT. However I cannot find the URL of the project on http://mvnrepository.com/ I've also tried looking for it on google forums but to no avail. I'm thinking of downloading the jar…
Adrian
  • 5,603
  • 8
  • 53
  • 85
0
votes
1 answer

Why sbt-idea doesn't generate the IDEA module for my build project

I have a multi module SBT project with this structure: ➜ Stample git:(split-in-sbt-modules) ✗ tree -L 1 . ├── project ├── stample-core ├── stample-search ├── stample-web └── target The build definition is pretty simple and looks like: lazy val…
Sebastien Lorber
  • 89,644
  • 67
  • 288
  • 419
0
votes
1 answer

Unable to get a type from different package in Scala

I have a project that consists of several subprojects. Let's say, I have three of them: service core common In my build.scala, I have the following definition lazy val root = Project ("root", file("."), settings = Info.settings) aggregate(common,…
madcyree
  • 1,427
  • 3
  • 15
  • 28
0
votes
2 answers

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 sbt in my project's directory, I noticed that it…
ses
  • 13,174
  • 31
  • 123
  • 226
1 2 3
4