itextpdf pom引用
时间: 2023-07-25 11:38:34 浏览: 173
itext导出pdf
你可以在你的 Maven 项目中使用以下依赖来引用 iTextPDF:
```
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13</version>
</dependency>
```
请注意,这是 iTextPDF 5.x 版本的依赖。如果你想使用 iTextPDF 7.x 版本,可以使用以下依赖:
```
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext7-core</artifactId>
<version>7.1.14</version>
</dependency>
```
同时,请确保你已经在你的 Maven 项目中配置了正确的仓库。
阅读全文