pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>aivfo-element</artifactId>
  7. <groupId>com.aivfo</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>aivfo-element-auth</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.aivfo</groupId>
  16. <artifactId>aivfo-element-common</artifactId>
  17. <version>${revision}</version>
  18. </dependency>
  19. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
  20. <dependency>
  21. <groupId>io.jsonwebtoken</groupId>
  22. <artifactId>jjwt</artifactId>
  23. <version>0.9.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>joda-time</groupId>
  27. <artifactId>joda-time</artifactId>
  28. <version>2.10.5</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>javax.xml.bind</groupId>
  32. <artifactId>jaxb-api</artifactId>
  33. </dependency>
  34. </dependencies>
  35. </project>