Maven的支持<developers>与<roles>,但是,我看到有效的作用,并没有定论。
<developers>
<roles>
这些角色只是出于文档目的的纯文本吗?如果没有可供选择的正式角色列表,是否存在有关如何设置角色名称格式的规则或标准?
例如,是UI开发人员a uideveloper,a ui-developer,a UI Developer等。
uideveloper
ui-developer
UI Developer
这就是我在XSD中看到的。角色只是简单的xs:string,主要用于文档。
xs:string
<xs:element name="roles" minOccurs="0"> <xs:annotation> <xs:documentation source="version">3.0.0+</xs:documentation> <xs:documentation source="description"> The roles the contributor plays in the project. Each role is described by a <code>role</code> element, the body of which is a role name. This can also be used to describe the contribution. </xs:documentation> </xs:annotation> <xs:complexType> <xs:sequence> <xs:element name="role" minOccurs="0" maxOccurs="unbounded" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element>