pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jnpf-boot-common</artifactId>
  7. <groupId>com.jnpf</groupId>
  8. <version>6.0.0-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>jnpf-common-office</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.jnpf</groupId>
  16. <artifactId>jnpf-common-core</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.afterturn</groupId>
  20. <artifactId>easypoi-base</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <artifactId>validation-api</artifactId>
  24. <groupId>javax.validation</groupId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.github.librepdf</groupId>
  30. <artifactId>openpdf</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.librepdf</groupId>
  34. <artifactId>openpdf-fonts-extra</artifactId>
  35. </dependency>
  36. </dependencies>
  37. </project>