How to access com.sun.pdfview from maven?

I am trying to compile iText 2.7.1 code in a maven project. This code is dependent on com.sun.pdfview. I know about the Sun Banking Guide , but it is not listed.

Anyone have a solution? Where can I find him?

+3
source share
2 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

+6
source

Project page including pdf-renderer source

After compiling in jar, below explains how to enable it in maven maven enable jars

+3
source

All Articles