12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports-samples-parent</artifactId>
- <version>${revision}</version>
- <relativePath>../pom-parent.xml</relativePath>
- </parent>
- <artifactId>jasperreports-samples-full</artifactId>
- <packaging>jar</packaging>
- <properties>
- <sample.base.name>Full</sample.base.name>
- <sample.report.name>MyChartReport</sample.report.name>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.twelvemonkeys.imageio</groupId>
- <artifactId>imageio-webp</artifactId>
- <version>3.9.4</version>
- <scope>runtime</scope>
- <optional>false</optional>
- </dependency>
- <dependency>
- <groupId>org.apache.pdfbox</groupId>
- <artifactId>pdfbox</artifactId>
- <version>2.0.31</version>
- </dependency>
- <dependency>
- <groupId>com.itextpdf</groupId>
- <artifactId>itextpdf</artifactId>
- <version>5.5.13.3</version>
- </dependency>
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports-charts</artifactId>
- <version>${revision}</version>
- <scope>compile</scope>
- <optional>false</optional>
- </dependency>
- <dependency>
- <groupId>org.hsqldb</groupId>
- <artifactId>hsqldb</artifactId>
- <version>${hsqldb.version}</version>
- <scope>runtime</scope>
- <optional>false</optional>
- </dependency>
- </dependencies>
- </project>
|