add javax.annotation-api dependency to xxl-job-core/pom.xml

The class com.xxl.job.core.glue.impl.SpringGlueFactory imports
javax.annotation.Resource, which requires the annotation API.  This commit
adds this dependency to the Maven build.
This commit is contained in:
Daniel Kroening 2020-03-16 12:24:09 +00:00
parent 3fdd02c698
commit a4d0bc3e42
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- javax.annotation -->
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies> </dependencies>
</project> </project>