aws / aws-swf-build-tools

Apache License 2.0
13 stars 16 forks source link

Support Java 8 sources #1

Open vvondra opened 8 years ago

vvondra commented 8 years ago

Copied from https://github.com/aws/aws-sdk-java/issues/350

AsynchronyDeciderAnnotationProcessor is annotated with @SupportedSourceVersion(SourceVersion.RELEASE_6), indicating it only supports code compiled for java 1.6 or earlier. This is awkward to support in Java 7+ projects because of the need for a bootclasspath argument pointing to a Java 6 environment.

ghost commented 8 years ago

Updated to : @SupportedSourceVersion(SourceVersion.RELEASE_7) should support Java 7 now.

umcodemonkey commented 8 years ago

Thanks, @njcongtou. Is there a plan for getting support up to Java 8?

ede-n commented 7 years ago

Looking forward to the Java 8 support.

vvondra commented 7 years ago

It should support Java 8, but to remove the extra warning I added https://github.com/aws/aws-swf-build-tools/pull/3

ede-n commented 7 years ago

Thank you. May I know when the changes would be available on maven central?