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

aQute.maven.dto.ExclusionDTO Maven / Gradle / Ivy

The newest version!
package aQute.maven.dto;

import aQute.bnd.util.dto.DTO;

/**
 * The <exclusion> element contains informations required to
 * exclude an artifact to the project.
 */
public class ExclusionDTO extends DTO {
	/**
	 * The group ID of the project to exclude.
	 */
	public String	groupId;

	/**
	 * The artifact ID of the project to exclude.
	 */
	public String	artifactId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy