小编典典

有有效Maven开发人员角色的规则吗?

java

Maven的支持<developers><roles>,但是,我看到有效的作用,并没有定论。

这些角色只是出于文档目的的纯文本吗?如果没有可供选择的正式角色列表,是否存在有关如何设置角色名称格式的规则或标准?

例如,是UI开发人员a uideveloper,a ui-developer,a UI Developer等。


阅读 219

收藏
2020-11-23

共1个答案

小编典典

这就是我在XSD中看到的。角色只是简单的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>
2020-11-23