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, 3 insertions, 1 deletions
diff --git a/compatibility/BuildInterface.java b/compatibility/BuildInterface.java
index d6d11db..c374d5d 100644
--- a/compatibility/BuildInterface.java
+++ b/compatibility/BuildInterface.java
@@ -12,7 +12,9 @@ public interface BuildInterface extends Dependency{
};
// deprecated methods, which clients are still allowed to implement, but not required
- public abstract BuildInterface finalBuild(); // needed to propagage through build builds. Maybe we can get rid of this.
+ public default BuildInterface finalBuild(){
+ throw new IncompatibleCbtVersionException("You need to define method classLoader.");
+ }; // needed to propagage through build builds. Maybe we can get rid of this.
public abstract BuildInterface copy(Context context);
public abstract String scalaVersion();
public abstract String[] crossScalaVersionsArray();