From e296ca863daae916da655335b687345215334a6c Mon Sep 17 00:00:00 2001 From: Stu Hood Date: Mon, 6 Jul 2015 11:11:06 -0700 Subject: [PATCH] Add missing dependency --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b6a48d173..dcfed8698 100644 --- a/build.sbt +++ b/build.sbt @@ -109,7 +109,7 @@ lazy val interfaceProj = (project in file("interface")). // defines operations on the API of a source, including determining whether it has changed and converting it to a string // and discovery of Projclasses and annotations lazy val apiProj = (project in compilePath / "api"). - dependsOn(interfaceProj). + dependsOn(interfaceProj, classfileProj). settings( testedBaseSettings, name := "API"