All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.bnd.repository.maven.provider.Configuration Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.1.0
Show newest version
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