Commit 10177fb7 authored by Phillip Webb's avatar Phillip Webb

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
parent 64b90666
...@@ -64,7 +64,7 @@ import org.springframework.boot.configurationprocessor.metadata.JsonMarshaller; ...@@ -64,7 +64,7 @@ import org.springframework.boot.configurationprocessor.metadata.JsonMarshaller;
* @since 1.2.0 * @since 1.2.0
*/ */
@SupportedAnnotationTypes({ "*" }) @SupportedAnnotationTypes({ "*" })
@SupportedSourceVersion(SourceVersion.RELEASE_6) @SupportedSourceVersion(SourceVersion.RELEASE_8)
public class ConfigurationMetadataAnnotationProcessor extends AbstractProcessor { public class ConfigurationMetadataAnnotationProcessor extends AbstractProcessor {
static final String CONFIGURATION_PROPERTIES_ANNOTATION = "org.springframework.boot." static final String CONFIGURATION_PROPERTIES_ANNOTATION = "org.springframework.boot."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment