]
Emmanuel Bernard updated BVAL-194:
----------------------------------
Fix Version/s: (was: 1.1)
1.1 early draft 1
Invalid license info
--------------------
Key: BVAL-194
URL:
https://hibernate.onjira.com/browse/BVAL-194
Project: Bean Validation
Issue Type: Bug
Affects Versions: 1.0 final
Reporter: Stevo Slavic
Priority: Minor
Fix For: 1.1 early draft 1
validation-api-1.0.0.GA.pom declares Apache 2 as license but with invalid URL and license
name is not standard. Please adjust license info in the pom 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.
For more information on JIRA, see: