[hibernate-issues] [Hibernate-JIRA] Created: (HV-261) Invalid license info

Stevo Slavic (JIRA) noreply at atlassian.com
Wed Oct 28 05:11:12 EDT 2009


Invalid license info
--------------------

                 Key: HV-261
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HV-261
             Project: Hibernate Validator
          Issue Type: Bug
    Affects Versions: 4.0.0.GA
            Reporter: Stevo Slavic
            Priority: Minor


Both hibernate-validator-parent-4.0.0.GA.pom and validation-api-1.0.0.GA.pom declare Apache 2 as license but with invalid url and license name is not standard. Please adjust license info in two pom's to be as in [apache parent pom|http://repo1.maven.org/maven2/org/apache/apache/6/apache-6.pom] as this will improve how dependency to this project artifact is treated by all sorts of maven plug-ins and tools, like project info dependency report plugin, maven jboss license plugin, etc.

So instead:

{code}
<licenses>
  <license>
    <name>Apache License, Version 2.0</name>
    <url>license.txt</url>
  </license>
</licenses>
{code}

should be:

{code}
<licenses>
  <license>
    <name>The Apache Software License, Version 2.0</name>
    <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    <distribution>repo</distribution>
  </license>
</licenses>
{code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list