![JAR search and dependency download from the Maven repository](/logo.png)
aQute.bnd.repository.maven.provider.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bnd Show documentation
Show all versions of biz.aQute.bnd Show documentation
This command line utility is the Swiss army knife of OSGi. It provides you with a breadth of tools to understand and manage OSGi based systems. This project basically uses bndlib.
package aQute.bnd.repository.maven.provider;
public interface Configuration {
/**
* The url to the remote release repository.
*/
String releaseUrl();
/**
* The url to the remote snapshot repository. If this is not specified,
* it falls back to the release repository or just local if this is also
* not specified.
*/
String snapshotUrl();
/**
* The path to the local repository
*/
// default "~/.m2/repository"
String local(String deflt);
// default false
boolean readOnly();
String name(String deflt);
String index(String deflt);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy