| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <parent>
- <artifactId>jnpf-boot-common</artifactId>
- <groupId>com.jnpf</groupId>
- <version>6.0.0-RELEASE</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jnpf-common-office</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.jnpf</groupId>
- <artifactId>jnpf-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.afterturn</groupId>
- <artifactId>easypoi-base</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>validation-api</artifactId>
- <groupId>javax.validation</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.github.librepdf</groupId>
- <artifactId>openpdf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.librepdf</groupId>
- <artifactId>openpdf-fonts-extra</artifactId>
- </dependency>
- </dependencies>
-
- </project>
|