hp1res / io-tools

Automatically exported from code.google.com/p/io-tools
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Commons-lang library new version #34

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

Last release commons-lang changed group-id and classes package name. Is it 
possible to align the version to the latest one? 

was:
{{{
<dependency>
    <groupId>commons-lang</groupId>
    <artifactId>commons-lang</artifactId>
    <version>2.6</version>
</dependency>
}}}

new:
{{{
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.0.1</version>
</dependency>
}}}

the package changed from "org.apache.commons.lang.*" to 
"org.apache.commons.lang3.*"

Original issue reported on code.google.com by orse...@gmail.com on 5 Oct 2011 at 9:06

GoogleCodeExporter commented 9 years ago

Original comment by gabriele...@gmail.com on 28 Oct 2012 at 10:39

GoogleCodeExporter commented 9 years ago
Commons Lang 3 removed the class ValuedEnum that's the parent class of 
FormatEnum. FormatEnum is in turn a class used by the facade of the library.

Changing FormatEnum to Java 5 enum syntax would probably have serious backward 
compatibility issues. Another option is to copy the ValuedEnum code into the 
FormatEnum class...

Some advice? 

Original comment by gabriele...@gmail.com on 29 Oct 2012 at 10:47

GoogleCodeExporter commented 9 years ago
Fixed in svn, will be released in 1.2.14

Original comment by gabriele...@gmail.com on 15 Dec 2012 at 10:59