forked from warthog-logic/warthog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (21 loc) · 767 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
name := "Warthog"
organization := "org.warthog"
version := "0.1-SNAPSHOT"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.3.10",
"net.java.dev.jna" % "jna" % "4.1.0",
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test")
resolvers ++= Seq(
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/",
"sbt-idea-repo" at "http://mpeltonen.github.com/maven/"
)
scalaVersion := "2.10.4"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
parallelExecution in Test := false
initialCommands in console := """
import org.warthog.generic.formulas._
import org.warthog.pl.formulas._
import org.warthog.fol.formulas._
import org.warthog.pl.parsers.tptp._
import org.warthog.fol.parsers.tptp._
"""