forked from nuvo-io/moliere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (18 loc) · 881 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
29
30
31
32
name := "moliere"
version := "0.9.2-SNAPSHOT"
organization := "io.nuvo"
homepage := Some(new java.net.URL("http://nuvo.io"))
scalaVersion := "2.11.6"
// This is used to fetch the jar for the DDS implementation (such as OpenSplice Mobile)
// resolvers += "Vortex Snapshot Repo" at Path.userHome.absolutePath +"/.m2/repository"
resolvers += "Vortex Snapshot Repo" at "https://dl.dropboxusercontent.com/u/19238968/vortex/mvn-repo"
//
libraryDependencies += "com.prismtech.cafe" % "cafe" % "2.1.2-SNAPSHOT"
autoCompilerPlugins := true
scalacOptions += "-deprecation"
scalacOptions += "-unchecked"
scalacOptions += "-optimise"
scalacOptions += "-feature"
scalacOptions += "-language:postfixOps"
// This is used for publishing released into git-hub
publishTo := Some(Resolver.file("file", new File(Path.userHome.absolutePath + "/xlabs/nuvo/mvn-repo/snapshots")))