aboutsummaryrefslogtreecommitdiff
path: root/compatibility/BuildInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'compatibility/BuildInterface.java')
-rw-r--r--compatibility/BuildInterface.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/compatibility/BuildInterface.java b/compatibility/BuildInterface.java
index e2b5f36..ebcfb99 100644
--- a/compatibility/BuildInterface.java
+++ b/compatibility/BuildInterface.java
@@ -2,11 +2,11 @@ package cbt;
import java.io.*;
public abstract class BuildInterface implements Dependency{
- public abstract BuildInterface copy(Context context); // needed to configure builds
- public abstract String scalaVersion(); // needed to propagate scalaVersion to dependent builds
public abstract BuildInterface finalBuild(); // needed to propagage through build builds. Maybe we can get rid of this.
public abstract File[] triggerLoopFilesArray(); // needed for watching files across composed builds
// deprecated methods, which clients are still allowed to implement, but not required
+ public abstract BuildInterface copy(Context context);
+ public abstract String scalaVersion();
public abstract String[] crossScalaVersionsArray();
}