You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently in the pom, the maven-compiler-plugin says the source and target are 1.6, however Eclipse complains about two usages of JDK7 code in the codebase:
Currently in the pom, the maven-compiler-plugin says the source and target are
1.6, however Eclipse complains about two usages of JDK7 code in the codebase:getHostString() is not visiblejava.net.StandardSocketOptionswas introduced in JDK7I guess we could fix this by either increasing the minimum version to
1.7or find JDK6 equivalents.