.flattened-pom.xml 1.1 KB

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