The EiffelArtifactCreatedEvent declares that a software artifact has been created, what its coordinates are, what it contains and how it was created.
Type: Object
Required: Yes
Description: The GAV of the created artifact.
Type: String
Required: Yes
Description: The groupId of the created artifact.
Type: String
Required: Yes
Description: The artifactId of the created artifact.
Type: String
Required: Yes
Description: The version of the created artifact.
Type: Object[]
Required: No
Description: A list of the artifact file contents, following the standard established by Apache Maven.
Type: String
Required: Yes
Description: The classifier of the file within the artifact. If none, an empty string shall be used.
Type: String
Required: Yes
Description: The extension of the file within the artifact. If none, an empty string shall be used.
Type: String
Required: No
Description: The command used to build the artifact within the identified environment. Used for reproducability purposes.
Type: String
Required: No
Legal values: NONE, ANY, EXACTLY_ONE, AT_LEAST_ONE
Description: Defines whether this artifact requires an implementing artifact. This is typically used for interfaces requiring some backend implementation, although the interface does not presume to define which implementation. Implicitly interpreted as "ANY" if undefined.
NONE signifies that there SHALL no implementations of this artifact. In other words, a composition containing another artifact identifying it in data.implements would be illegal.
ANY signifies that there may or may not be implementations of this artifact.
EXACTLY_ONE signifies that a legal composition must contain one and only one implementation of this artifact.
AT_LEAST_ONE signifies that a legal composition must contain one or more implementations of this artifact.
Type: Object[]
Required: No
Description: An array of GAVs this artifact implements. The typical use case of this is to identify interfaces implemented by this artifact.
Type: String
Required: Yes
Description: The groupId of the implemented artifact.
Type: String
Required: Yes
Description: The artifactId of the implemented artifact.
Type: String
Required: Yes
Description: The version of the implemented artifact. Note that version range notation is supported.
Type: Object[]
Required: No
Description: An array of GAVs this artifact depends on.
Type: String
Required: Yes
Description: The groupId of the dependency.
Type: String
Required: Yes
Description: The artifactId of the dependency.
Type: String
Required: Yes
Description: The version of the dependency. Note that version range notation is supported.
Type: String
Required: No
Description: Any (colloquial) name of the artifact. Unlike data.gav, this is not intended as an unambiguous identifier of the artifact, but as a descriptive and human readable name.
Version | Introduced in | Changes |
---|---|---|
1.0.0 | edition-bordeaux | Initial version. |