Commons-lang dependency does not specify a version
--------------------------------------------------

                 Key: DISPL-464
                 URL: http://jira.codehaus.org/browse/DISPL-464
             Project: DisplayTag
          Issue Type: Bug
          Components: Build/distribution
    Affects Versions: 1.1
            Reporter: Arnaud Jeansen
            Priority: Minor


Displaytag v1.1 requires at least commons-lang version 2.1. This is checked by 
the DependencyChecker class, and running with version 2.0 will trigger an error 
from this DependencyChecker.
However, the pom.xml listing dependencies has no required versions for 
commons-lang :
[...]
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
    </dependency>
[...]
This dependency should require 2.1 the following way :
[...]
        <dependency>
                <groupId>commons-lang</groupId>
                <artifactId>commons-lang</artifactId>
                <version>2.1</version>
        </dependency>
[...]
Setting as minor because a simple workaround would be to add the above 
dependency in your own project's pom.xml


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

        

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
displaytag-devel mailing list
displaytag-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to