Package org.nuxeo.runtime.test.runner
Annotation Interface Deploy
@Inherited
@Repeatable(Deploys.class)
@Retention(RUNTIME)
@Target({TYPE,METHOD})
public @interface Deploy
A list of artifacts to be deployed.
Deployable artifacts are either bundles either components:
- A bundle entry is represented by the bundle symbolic name.
- A component entry is represented by an URI of the form: symbolicName:componentXmlPath, where symbolicName is the symbolic name of the bundle owning the component.
@Deploy("org.nuxeo.runtime")Example with several modules:
@Deploy({"org.nuxeo.runtime", "org.nuxeo.core:OSGI-INF/component.xml"})
-
Required Element Summary
-
Element Details
-
value
String[] valueThe artifact ID (symbolic name or bundle resource URI).
-