mirror of https://github.com/sbt/sbt.git
12 lines
308 B
Java
12 lines
308 B
Java
/* sbt -- Simple Build Tool
|
|
* Copyright 2009 Mark Harrah
|
|
*/
|
|
package xsbti;
|
|
|
|
public interface Versions
|
|
{
|
|
public static final String Sbt = "0.7.0_13"; // keep in sync with LauncherProject in the XSbt project definition;
|
|
public static final int Interface = 1;
|
|
public static final int BootInterface = 1;
|
|
}
|