Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. <repositories>
  2. <repository>
  3. <id>itext-releases</id>
  4. <name>iText Repository - releases</name>
  5. <url>https://repo.itextsupport.com/releases</url>
  6. </repository>
  7. </repositories>
  8.  
  9.  
  10. <dependencies>
  11.  
  12.  
  13. <dependency>
  14. <groupId>com.itextpdf</groupId>
  15. <artifactId>kernel</artifactId>
  16. <version>7.1.7</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.itextpdf</groupId>
  20. <artifactId>io</artifactId>
  21. <version>7.1.7</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.itextpdf</groupId>
  25. <artifactId>layout</artifactId>
  26. <version>7.1.7</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.itextpdf</groupId>
  30. <artifactId>forms</artifactId>
  31. <version>7.1.7</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.itextpdf</groupId>
  35. <artifactId>hyph</artifactId>
  36. <version>7.1.7</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.itextpdf</groupId>
  40. <artifactId>pdftest</artifactId>
  41. <version>7.1.7</version>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/com.itextpdf/styled-xml-parser -->
  44. <dependency>
  45. <groupId>com.itextpdf</groupId>
  46. <artifactId>styled-xml-parser</artifactId>
  47. <version>7.1.7</version>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-licensekey -->
  50. <dependency>
  51. <groupId>com.itextpdf</groupId>
  52. <artifactId>itext-licensekey</artifactId>
  53. <version>3.0.5</version>
  54. </dependency>
  55. </dependencies>
  56.  
  57.  
  58.  
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <version>3.3</version>
  65. <configuration>
  66.  
  67. <target>1.8</target>
  68. </configuration>
  69. </plugin>
  70.  
  71.  
  72.  
  73. </plugins>
  74. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement