pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.github.jhonnymertz</groupId>
  5. <artifactId>java-wkhtmltopdf-wrapper</artifactId>
  6. <version>1.1.5-RELEASE</version>
  7. <licenses>
  8. <license>
  9. <name>MIT License</name>
  10. <url>http://www.opensource.org/licenses/mit-license.php</url>
  11. <distribution>repo</distribution>
  12. </license>
  13. </licenses>
  14. <dependencies>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <version>4.12</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.pdfbox</groupId>
  23. <artifactId>pdfbox</artifactId>
  24. <version>1.8.16</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.commons</groupId>
  29. <artifactId>commons-lang3</artifactId>
  30. <version>3.4</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-io</groupId>
  34. <artifactId>commons-io</artifactId>
  35. <version>2.5</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.slf4j</groupId>
  39. <artifactId>slf4j-api</artifactId>
  40. <version>1.7.25</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-simple</artifactId>
  45. <version>1.7.5</version>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>