Update @SupportedSourceVersion to RELEASE_8

Update the @SupportedSourceVersion annotation to RELEASE_8 since it
should indicate "the latest source version an annotation processor
supports".

Fixes gh-2302
This commit is contained in:
Phillip Webb 2015-01-07 09:40:36 -08:00
parent 64b9066661
commit 10177fb754
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ import org.springframework.boot.configurationprocessor.metadata.JsonMarshaller;
* @since 1.2.0
*/
@SupportedAnnotationTypes({ "*" })
@SupportedSourceVersion(SourceVersion.RELEASE_6)
@SupportedSourceVersion(SourceVersion.RELEASE_8)
public class ConfigurationMetadataAnnotationProcessor extends AbstractProcessor {
static final String CONFIGURATION_PROPERTIES_ANNOTATION = "org.springframework.boot."