package org.apache.commons.io does not exist error

后端 未结 3 1706
没有蜡笔的小新
没有蜡笔的小新 2021-02-19 08:06

I am compiling a .java file using ant compiler. I am getting the following errror \"package org.apache.commons.io does not exist error\"

I downloaded the apache Commons

3条回答
  •  我在风中等你
    2021-02-19 08:40

    I was having same issue then realized that the version of commons-io getting picked up was lower than what I need (2.4)....I need to Override the already managed version as below to get the right one picked up:

    
         commons-io
         commons-io
         2.4
     
    

提交回复
热议问题