The CDI (Context Dependency Injection) Framework contains the awesome class javax.enterprise.util.AnnotationLiteral that makes it very easy to create an instance of an Annotation (especaly useful for tests).
I want to use that util class in my own library. But because my library has noting to do with CDI, I do not want to have all the other CDI stuff. Fortunately AnnotationLiteral does not use any other classes than standard java classes, so this should be possible in general.
Up to now the smallest Library that contains AnnotationLiteral is the official CDI-API
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0</version>
</dependency>
But even if I cut off all the dependencies (by maven exclude), the jar will contain a lot of other CDI-API and -SPI stuff.
So my question is: Is there already some (more or less official) (maven) library that contains only the util.AnnotationLiteral Class, or at least not so much other stuff?