Update main source and target JDK compatibility

Update source and target compatibility from 1.5 to 1.6, meaning that
@Override is now allowed on implementations of interface methods within
main classes.

Issue: SPR-10130
This commit is contained in:
Chris Beams 2012-12-28 15:00:00 +01:00
parent a312d900f8
commit 9c2046c3ee
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ configure(allprojects) {
group = "org.springframework"
compileJava {
sourceCompatibility=1.5
targetCompatibility=1.5
sourceCompatibility=1.6
targetCompatibility=1.6
}
compileTestJava {
sourceCompatibility=1.7