I have declared a annotation like this:
public @interface CustomAnnot { String[] author() default \"me\"; String description() default \"\"; }
Do it like this:
public @interface CustomAnnot { String[] author() default "me"; String description() default ""; }
And your annotation:
@CustomAnnot(author={"author1","author2"}, description="test")