You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 28, 2022. It is now read-only.
Hi.. I'm having a hard time to put the jasmine plugin on my project. This is my current Build.scala:
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "liquidplatform"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
"mysql" % "mysql-connector-java" % "5.1.18",
"org.hibernate" % "hibernate-entitymanager" % "4.1.4.Final",
"net.sf.dozer" % "dozer" % "5.3.2"
)
//object Resolvers {
//val archivaSamba = "Archiva Sambatech" at "http://192.168.0.15:8081/archiva"
//}
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(
// Add your own project settings here
ebeanEnabled := false
)
}
And my plugins.sbt:
// Comment to get more information during initialization
logLevel := Level.Warn
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0.1")
I'm a little new on Play Framework and when I add the
"
lazy val plugins = Project("plugins", file("."))
.dependsOn(uri("git://github.com/guardian/sbt-jasmine-plugin.git#1.0"))"
or
seq(jasmineSettings : _*)
It gives me a sintax error.
Note: I'm using play 2.0.1