Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access com.sun.pdfview from maven?

I am trying to compile iText 2.7.1 code in a maven project. This code has a dependency to com.sun.pdfview. I know about the guide to coping with Sun jars, but it is not in the list.

Anyone has a solution? Where can I find it?

like image 459
Jérôme Verstrynge Avatar asked Dec 29 '25 02:12

Jérôme Verstrynge


1 Answers

<dependency>
    <groupId>com.kenai.nbpwr</groupId>
    <artifactId>com-sun-pdfview</artifactId>
    <version>1.0.5-201003191900</version>
    <type>nbm</type>
</dependency>

http://search.maven.org/#search%7Cga%7C1%7Cpdfview

like image 57
Bubba Avatar answered Dec 31 '25 16:12

Bubba