forked from cheleb/jug-play-scala
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
29 lines (15 loc) · 858 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
scalaVersion := "2.10.3"
offline := true
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
scalacOptions ++= Seq("-target:jvm-1.7","-language:postfixOps")
//scalacOptions += "-feature"
//resolvers += "Central repository" at "http://repo1.maven.org/maven2/"
resolvers += Resolver.file("Local Repository", file("/Users/olivier/projects/scala/Play20/repository/local"))(Resolver.ivyStylePatterns)
resolvers += Resolver.url("sbt-plugin-releases", new URL("http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
dartDev := true
//dartNoJs := true
//dartEntryPoints += "sosimple.dart"
dartEntryPoints ++= Seq("sosimple.dart")
//dartWebUIEntryPoints += "speakers.html"
//dartWebUIEntryPoints += "admin/dbbrowser.html"