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

aQute.bnd.service.repository.Phase Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.service.repository;

public enum Phase {
	/**
	 * Submitted by developer, can be used by other developer but is not yet
	 * generally available.
	 */
	STAGING,
	/**
	 * Locked, generally for QA to test in preparation for becoming the next
	 * master
	 */
	LOCKED,
	/**
	 * Curremt master
	 */
	MASTER,

	/**
	 * Retired, no longer available for searching though still available for
	 * existing projects.
	 */
	RETIRED,

	/**
	 * Revoked/withdrawn. Should fail any dependent builds.
	 */
	WITHDRAWN;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy