Browse Source

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.
Daniel Kroening 5 years ago
parent
commit
a4d0bc3e42
1 changed files with 7 additions and 0 deletions
  1. 7 0
      xxl-job-core/pom.xml

+ 7 - 0
xxl-job-core/pom.xml

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