Skip to content
Snippets Groups Projects
Commit 74fce621 authored by Katja Goltsova's avatar Katja Goltsova Committed by Viktor Kunčak
Browse files

lisa-utils depend on scallion and silex for parsing

parent 04aad4c8
No related branches found
No related tags found
4 merge requests!62Easy tactics,!58Easy tactics,!54Front integration,!53Front integration
......@@ -37,6 +37,11 @@ val commonSettings3 = Seq(
def withTests(project: Project): ClasspathDependency =
project % "compile->compile;test->test"
def githubProject(repo: String, commitHash: String) = RootProject(uri(s"$repo#$commitHash"))
lazy val scallion = githubProject("https://github.com/epfl-lara/scallion.git", "08b333f9af2d8daa1fb7424cd47b0433cd5e9770")
lazy val silex = githubProject("https://github.com/epfl-lara/silex.git", "eaf296425b9d8cc9100dfa66a079641ee4cfe4ae")
lazy val root = Project(
id = "lisa",
base = file(".")
......@@ -63,6 +68,8 @@ lazy val utils = Project(
)
.settings(commonSettings3)
.dependsOn(kernel)
.dependsOn(silex)
.dependsOn(scallion % "compile->compile")
lazy val theories = Project(
id = "lisa-theories",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment