aboutsummaryrefslogblamecommitdiff
path: root/compatibility/BuildInterface.java
blob: f061832aeb785e300ff8ed65c1b958f82e071dcf (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                 
                                                           
                                                                                      




                                                                                                                         
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 String[] crossScalaVersionsArray(); // FIXME: this probably can't use Scala classes
  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
}