You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Gabriel Belingueres (JIRA)" <ji...@apache.org> on 2013/06/24 21:08:20 UTC

[jira] [Created] (WW-4127) different commons-io versions in struts2-core

Gabriel Belingueres created WW-4127:
---------------------------------------

             Summary: different commons-io versions in struts2-core
                 Key: WW-4127
                 URL: https://issues.apache.org/jira/browse/WW-4127
             Project: Struts 2
          Issue Type: Bug
          Components: Build Management
    Affects Versions: 2.3.15
         Environment: Maven
            Reporter: Gabriel Belingueres
            Priority: Minor


Hi!

the commons-io component is a dependency of both commons-fileupload-1.3 (commons-io-2.2) and struts2-core (commons-io 2.0.1) which is inherited from struts2-parent's pom.xml file.

A workaround exists by adding the correct commons-io version in the dependencyManagement section of your project's pom.xml file:

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.2</version>
      </dependency>
    </dependencies>
  </dependencyManagement>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira