forked from GanaramInukshuk/Network-Addon-Mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
35 lines (24 loc) · 1.03 KB
/
build.sbt
File metadata and controls
35 lines (24 loc) · 1.03 KB
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
33
34
35
name := "nam-controller"
organization := "com.github.memo33"
version := "32.2.0-SNAPSHOT"
scalaVersion := "2.11.0"
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-feature",
//"-Yinline-warnings",
//"-optimize",
"-encoding", "UTF-8",
"-target:jvm-1.6")
mainClass in Compile := Some("metarules.module.CompileAllMetarules")
initialCommands in console := """
import metarules._, meta._
import Implicits._, Network._, Flag._, Flags._, RotFlip._, Tile.{CopyTile => %}
implicit val resolve = module.Main.resolve
def transduce(rule: Rule[Tile]): Unit = RuleTransducer(rule) foreach println
"""
libraryDependencies += "org.scalatest" %% "scalatest" % "2.1.5" % "test"
resolvers += "memo33-gdrive-repo" at "https://googledrive.com/host/0B9r6o2oTyY34ZVc4SFBWMV9yb0E/repo/releases/"
// for some reason, sbt cannot seem to handle repository locations of transitive dependencies
resolvers += "stephenjudkins-bintray" at "http://dl.bintray.com/stephenjudkins/maven"
libraryDependencies += "com.github.memo33" %% "metarules" % "0.1.1"