I noticed that most of the Commons components listed on projects.apache.org have an empty release history. This is due to an incorrect syntax in the doap files. The releases are defined with:

  <revision>
    <name>commons-codec</name>
    <created>2004-07-10</created>
    <version>1.3</version>
  </revision>

but it should be:

  <Version>
    <name>commons-codec</name>
    <created>2004-07-10</created>
    <revision>1.3</revision>
  </Version>

that's, the "revision" tags become "Version" (case sensitive), and "version" becomes "revision".

The following projects use the right syntax:

CLI
Configuration
Modeler
Pool
Validator

Could everyone look at their projects and fix the files please?

Thank you,

Emmanuel Bourg

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to