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

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

There is a newer version: 7.1.0
Show newest version
package aQute.bnd.repository.maven.provider;

import org.osgi.annotation.versioning.ProviderType;

@ProviderType
public interface Configuration {

	/**
	 * The urls to the remote release repository.
	 */
	String releaseUrl();

	/**
	 * The urls to the remote snapshot repository.
	 */
	String snapshotUrl();

	/**
	 * The path to the local repository
	 */
	// default "~/.m2/repository"
	String local(String deflt);

	// default false
	boolean readOnly();

	/**
	 * The name of this repository
	 * 
	 * @param deflt
	 */
	String name(String deflt);

	/**
	 * The path to the index file
	 * 
	 * @param deflt
	 */
	String index(String deflt);

	/**
	 * Do not update the index when a file is released
	 */
	boolean noupdateOnRelease();

	/**
	 * Sets the time in seconds when to check for changes in the pom-files
	 */
	// default: 5 seconds
	int poll_time(int pollTimeInSecs);

	/**
	 * Allow redeploy
	 */
	boolean redeploy();

	/**
	 * Ignore maven information in META-INF/maven/....
	 */

	boolean ignore_metainf_maven();

	/**
	 * Extensions for files that contain multiple JARs
	 * 
	 */
	String multi();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy