mirror of
https://github.com/sbt/sbt.git
synced 2026-09-03 16:39:24 +02:00
support binary version in launcher
This commit is contained in:
committed by
Mark Harrah
parent
e47b8ab578
commit
125727ba83
@@ -11,6 +11,7 @@ public interface ApplicationID
|
||||
public String mainClass();
|
||||
public String[] mainComponents();
|
||||
public boolean crossVersioned();
|
||||
public CrossValue crossVersionedValue();
|
||||
|
||||
/** Files to add to the application classpath. */
|
||||
public File[] classpathExtra();
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
package xsbti;
|
||||
|
||||
public enum CrossValue
|
||||
{
|
||||
Disabled, Full, Binary;
|
||||
}
|
||||
Reference in New Issue
Block a user