You can download pdfngreport-2.1.3.jar in this page.
Apache License, Version 2.0
pdfngreport-2.1.3.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.uttesh/pdfngreport/pom.properties META-INF/maven/com.uttesh/pdfngreport/pom.xml com.uttesh.pdfngreport.PDFGenerator.class com.uttesh.pdfngreport.PDFReportDataListener.class com.uttesh.pdfngreport.PDFReportGenerateListener.class com.uttesh.pdfngreport.PDFReportListener.class com.uttesh.pdfngreport.common.Constants.class com.uttesh.pdfngreport.common.ImageDecode.class com.uttesh.pdfngreport.common.ImageEncoder.class com.uttesh.pdfngreport.common.ImageUtils.class com.uttesh.pdfngreport.exceptionHandler.ReportException.class com.uttesh.pdfngreport.handler.PdfReportHandler.class com.uttesh.pdfngreport.model.ColumnMeta.class com.uttesh.pdfngreport.model.ResultMeta.class com.uttesh.pdfngreport.model.SystemMeta.class com.uttesh.pdfngreport.model.TableMeta.class com.uttesh.pdfngreport.util.ExceptionBean.class com.uttesh.pdfngreport.util.ExceptionSummary.class com.uttesh.pdfngreport.util.PDFCache.class com.uttesh.pdfngreport.util.PdfLogger.class com.uttesh.pdfngreport.util.PdfngUtil.class com.uttesh.pdfngreport.util.chart.ChartStyle.class com.uttesh.pdfngreport.util.pdf.FailedTable.class com.uttesh.pdfngreport.util.pdf.GenerateTable.class com.uttesh.pdfngreport.util.pdf.ITable.class com.uttesh.pdfngreport.util.pdf.SkippedTable.class com.uttesh.pdfngreport.util.pdf.StatisticsTable.class com.uttesh.pdfngreport.util.pdf.SuccessTable.class com.uttesh.pdfngreport.util.xml.ColumnHeader.class com.uttesh.pdfngreport.util.xml.ExceptionMeta.class com.uttesh.pdfngreport.util.xml.ReportData.class com.uttesh.pdfngreport.util.xml.Row.class com.uttesh.pdfngreport.util.xml.RowMeta.class com.uttesh.pdfngreport.util.xml.Table.class com.uttesh.pdfngreport.util.xml.XmlResult.class com/uttesh/config/report.xsl com/uttesh/images/round/chatSupport.png com/uttesh/images/round/detail.png com/uttesh/images/round/exception.png com/uttesh/images/round/failed.png com/uttesh/images/round/image.png com/uttesh/images/round/pass.png com/uttesh/images/round/skip.png com/uttesh/images/round/statistics.png com/uttesh/images/round/stop.png
pdfngreport-2.1.3.pom file content.
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.uttesh</groupId> <artifactId>pdfngreport</artifactId> <version>2.1.3</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> </properties> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <developers> <developer> <id>uttesh</id> <name>Uttesh Kumar T.H.</name> <email>uttesh@gmail.com</email> <url>http://www.uttesh.com</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Asia/Kolkata</timezone> <properties> <picUrl>https://avatars1.githubusercontent.com/u/2218611</picUrl> </properties> </developer> </developers> <name>pdfngreport</name> <description>Create the pdf report for the testng test cases execution results</description> <url>http://maven.apache.org</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub Issue Tracker</system> <url>https://github.com/uttesh/pdfngreport/issues</url> </issueManagement> <scm> <url>http://svn.apache.org/viewvc/maven</url> </scm> <dependencies> <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> <version>1.0.13</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.9.4</version> <type>jar</type> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>fop</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.avalon.framework</groupId> <artifactId>avalon-framework-api</artifactId> <version>4.3.1</version> </dependency> <dependency> <groupId>org.apache.avalon.framework</groupId> <artifactId>avalon-framework-impl</artifactId> <version>4.3.1</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xsl</include> <include>**/*.png</include> </includes> </resource> </resources> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <executable>F:/devtools/jdk1.6.0_31/bin/javac</executable> </configuration> <version>2.3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <skipTests>true</skipTests> <suiteXmlFiles> <suiteXmlFile>testng.xml</suiteXmlFile> </suiteXmlFiles> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <mainClass>com.uttesh.pdfngreport.PDFReportListener</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <quiet>true</quiet> <nonavbar>true</nonavbar> <notree>true</notree> <nocomment>true</nocomment> <nohelp>true</nohelp> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!--<plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin>--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>
<dependency> <groupId>com.uttesh</groupId> <artifactId>pdfngreport</artifactId> <version>2.1.3</version> </dependency>
If you think the following pdfngreport-2.1.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download pdfngreport-2.1.3.jar file