pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>io.github.jerdeb</groupId>
  4. <artifactId>dgcsim</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.glassfish.jersey.containers</groupId>
  9. <artifactId>jersey-container-grizzly2-http</artifactId>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.glassfish.jersey.inject</groupId>
  13. <artifactId>jersey-hk2</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>com.fasterxml.jackson.core</groupId>
  17. <artifactId>jackson-databind</artifactId>
  18. <version>2.9.8</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.fasterxml.jackson.core</groupId>
  22. <artifactId>jackson-core</artifactId>
  23. <version>2.9.8</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.fasterxml.jackson.core</groupId>
  27. <artifactId>jackson-annotations</artifactId>
  28. <version>2.9.8</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.opencsv</groupId>
  32. <artifactId>opencsv</artifactId>
  33. <version>4.0</version>
  34. </dependency>
  35. </dependencies>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.glassfish.jersey</groupId>
  40. <artifactId>jersey-bom</artifactId>
  41. <version>2.27</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. </dependencies>
  46. </dependencyManagement>
  47. </project>