pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>net.sf.jasperreports</groupId>
  6. <artifactId>jasperreports-samples-parent</artifactId>
  7. <version>${revision}</version>
  8. <relativePath>../pom-parent.xml</relativePath>
  9. </parent>
  10. <artifactId>jasperreports-samples-full</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <sample.base.name>Full</sample.base.name>
  14. <sample.report.name>MyChartReport</sample.report.name>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.twelvemonkeys.imageio</groupId>
  19. <artifactId>imageio-webp</artifactId>
  20. <version>3.9.4</version>
  21. <scope>runtime</scope>
  22. <optional>false</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.pdfbox</groupId>
  26. <artifactId>pdfbox</artifactId>
  27. <version>2.0.31</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.itextpdf</groupId>
  31. <artifactId>itextpdf</artifactId>
  32. <version>5.5.13.3</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>net.sf.jasperreports</groupId>
  36. <artifactId>jasperreports-charts</artifactId>
  37. <version>${revision}</version>
  38. <scope>compile</scope>
  39. <optional>false</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.hsqldb</groupId>
  43. <artifactId>hsqldb</artifactId>
  44. <version>${hsqldb.version}</version>
  45. <scope>runtime</scope>
  46. <optional>false</optional>
  47. </dependency>
  48. </dependencies>
  49. </project>