ireport

Component that facilitates the handling of reports with JasperReports library

Лицензия

Лицензия

Группа

Группа

br.com.damsete
Идентификатор

Идентификатор

ireport
Последняя версия

Последняя версия

0.0.3
Дата

Дата

Тип

Тип

jar
Описание

Описание

ireport
Component that facilitates the handling of reports with JasperReports library
Ссылка на сайт

Ссылка на сайт

https://github.com/andretads/ireport
Организация-разработчик

Организация-разработчик

Damsete Tecnologia LTDA
Система контроля версий

Система контроля версий

https://github.com/andretads/ireport

Скачать ireport

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/br.com.damsete/ireport/ -->
<dependency>
    <groupId>br.com.damsete</groupId>
    <artifactId>ireport</artifactId>
    <version>0.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/br.com.damsete/ireport/
implementation 'br.com.damsete:ireport:0.0.3'
// https://jarcasting.com/artifacts/br.com.damsete/ireport/
implementation ("br.com.damsete:ireport:0.0.3")
'br.com.damsete:ireport:jar:0.0.3'
<dependency org="br.com.damsete" name="ireport" rev="0.0.3">
  <artifact name="ireport" type="jar" />
</dependency>
@Grapes(
@Grab(group='br.com.damsete', module='ireport', version='0.0.3')
)
libraryDependencies += "br.com.damsete" % "ireport" % "0.0.3"
[br.com.damsete/ireport "0.0.3"]

Зависимости

compile (9)

Идентификатор библиотеки Тип Версия
net.sf.jasperreports : jasperreports jar 6.11.0
net.sf.jasperreports : jasperreports-fonts jar 6.11.0
net.sourceforge.barbecue : barbecue jar 1.5-beta1
net.sf.barcode4j : barcode4j jar 2.1
org.apache.xmlgraphics : batik-bridge jar 1.12
org.apache.poi : poi jar 4.1.2
xalan : xalan jar 2.7.2
com.lowagie : itext jar 2.1.7
com.google.guava : guava jar 28.2-jre

provided (1)

Идентификатор библиотеки Тип Версия
org.projectlombok : lombok jar 1.18.12

test (2)

Идентификатор библиотеки Тип Версия
org.powermock : powermock-module-junit4 jar 2.0.4
org.powermock : powermock-api-mockito2 jar 2.0.6

Модули Проекта

Данный проект не имеет модулей.

ireport component

The ireport component provides facilities for integrating applications with the use of report generation components.

Its objective is to reduce the complexity for: reading, generating and viewing reports.

Use Example

List<Object> objects = ... // your list of objects from database, etc

Map<String, Object> params = newHashMap();
params.put("ONE_PARAM", new Object());

Report report = new ReportImpl("report.jrxml");
byte[] relbytes = report.export(clockMirrors, params, TypeReport.PDF);

Версии библиотеки

Версия
0.0.3
0.0.2
0.0.1