Using SBT from Scala IDE

No, you cannot do this. The way to do it is as you described. Then, whenever you make changes to build.sbt (e.g., new jar dependency), rerun the eclipse command from sbt and refresh the project in Eclipse so that the newly generated files are reloaded.

sbt assembly command not found

Did you create a assembly.sbt at the root of your project? Alongside your build.sbt? If so, then that’s the problem. You want to have it inside the project directory. Having done that it worked out the box as expected with the rest of your setup: > assembly [info] Including: scala-library.jar [info] Checking every *.class/*.jar file’s … Read more

SBT to Maven Converter

Did you try make-pom from sbt? It generates basic POM for the current project at the ./target. To customize generation, you can override pomExtra, pomIncludeRepository and pomPostProcess at the project definition.

How to disable ScalaDoc generation in dist task in Play 2.2.x (using project/build.scala)?

Add the following settings to the Play project: sources in (Compile,doc) := Seq.empty publishArtifact in (Compile, packageDoc) := false With the change it should be as follows: play.Project(appName, appVersion, appDependencies) .settings(scalaVersion := “2.10.3”) .settings(jsSettings : _*) .settings( publishArtifact in (Compile, packageDoc) := false, publishArtifact in packageDoc := false, sources in (Compile,doc) := Seq.empty ) Thanks … Read more

How to force a specific version of dependency?

you can use dependencyOverrides: dependencyOverrides += “foo” %% “foo” % “1.2.2” You’re not avoiding “logical inconsistencies” anyway. If you force a version, you have to manually take care of compatibility with other libraries, there’s no way out of that. From the documentation: Overriding a version For binary compatible conflicts, sbt provides dependency overrides. They are … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)