http://maven.apache.org/POM/4.0.0
complexType Dependency

Super Types
{http://www.w3.org/2001/XMLSchema}anyType
|
+--{http://maven.apache.org/POM/4.0.0}Dependency (restriction)

Documentation
3.0.0+
Properties
This component is not nillable.

Model
<...>
(groupId? ; artifactId? ; version? ; type? ; classifier? ; scope? ; systemPath? ; exclusions ; optional?)
</...>


Nested Element Summary
xs:stringartifactId
          3.0.0+ The unique id for an artifact produced by the project group, e.g. 
xs:stringclassifier
          4.0.0 The classifier of the dependency. 
 exclusions
          4.0.0 Lists a set of artifacts that should be excluded from this dependency's artifact list when it comes to calculating transitive dependencies.  
xs:stringgroupId
          3.0.0+ The project group that produced the dependency, e.g. 
xs:booleanoptional
          4.0.0 Indicates the dependency is optional for use of this library. 
xs:stringscope
          4.0.0 The scope of the dependency - <code>compile</code>, <code>runtime</code>, <code>test</code>, <code>system</code>, and <code>provided</code>. 
xs:stringsystemPath
          4.0.0 FOR SYSTEM SCOPE ONLY. 
xs:stringtype
          4.0.0 The type of dependency. 
xs:stringversion
          3.0.0+ The version of the dependency, e.g. 
Source
<xs:complexType name="Dependency">
<xs:all>
<xs:element minOccurs="0" name="groupId" type="xs:string">
</xs:element>
<xs:element minOccurs="0" name="artifactId" type="xs:string">
</xs:element>
<xs:element minOccurs="0" name="version" type="xs:string">
</xs:element>
<xs:element default="jar" minOccurs="0" name="type" type="xs:string">
</xs:element>
<xs:element minOccurs="0" name="classifier" type="xs:string">
</xs:element>
<xs:element minOccurs="0" name="scope" type="xs:string">
</xs:element>
<xs:element minOccurs="0" name="systemPath" type="xs:string">
</xs:element>
<xs:element minOccurs="0" name="exclusions">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="exclusion" type="Exclusion"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element default="false" minOccurs="0" name="optional" type="xs:boolean">
</xs:element>
</xs:all>
</xs:complexType>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.