pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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>PDFOperation</groupId>
  5. <artifactId>PDFOperation</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <build>
  8. <sourceDirectory>src</sourceDirectory>
  9. <plugins>
  10. <plugin>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <version>3.5.1</version>
  13. <configuration>
  14. <source>1.7</source>
  15. <target>1.7</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.apache.pdfbox</groupId>
  23. <artifactId>pdfbox</artifactId>
  24. <version>2.0.6</version>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  27. <dependency>
  28. <groupId>org.bouncycastle</groupId>
  29. <artifactId>bcprov-jdk15on</artifactId>
  30. <version>1.54</version>
  31. </dependency>
  32. </dependencies>
  33. </project>