mirror of https://github.com/sbt/sbt.git
9 lines
120 B
Java
9 lines
120 B
Java
|
|
package xsbti;
|
||
|
|
|
||
|
|
import java.net.URL;
|
||
|
|
|
||
|
|
public interface MavenRepository extends Repository
|
||
|
|
{
|
||
|
|
String id();
|
||
|
|
URL url();
|
||
|
|
}
|