<?xml version="1.0"?>
|
<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>
|
<parent>
|
<groupId>com.chinaztt.mes</groupId>
|
<artifactId>ztt-mes</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
|
<artifactId>mes-report</artifactId>
|
|
|
<dependencies>
|
<dependency>
|
<groupId>net.sf.jasperreports</groupId>
|
<artifactId>jasperreports</artifactId>
|
<version>6.16.0</version>
|
<exclusions>
|
<exclusion>
|
<groupId>com.lowagie</groupId>
|
<artifactId>itext</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>com.lowagie</groupId>
|
<artifactId>itext</artifactId>
|
<version>2.1.7.js6</version>
|
</dependency>
|
<!-- jasper font extension -->
|
<dependency>
|
<groupId>net.sf.jasperreports</groupId>
|
<artifactId>jasperreports-fonts</artifactId>
|
<version>6.16.0</version>
|
</dependency>
|
|
<!-- 条形码 -->
|
<dependency>
|
<groupId>net.sourceforge.barbecue</groupId>
|
<artifactId>barbecue</artifactId>
|
<version>1.5-beta1</version>
|
</dependency>
|
<dependency>
|
<groupId>net.sf.barcode4j</groupId>
|
<artifactId>barcode4j</artifactId>
|
<version>2.0</version>
|
</dependency>
|
|
<!-- 二维码 -->
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>3.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>javase</artifactId>
|
<version>3.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.chinaztt</groupId>
|
<artifactId>jasper-fonts</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.xmlgraphics</groupId>
|
<artifactId>batik-all</artifactId>
|
<version>1.9.1</version>
|
</dependency>
|
</dependencies>
|
|
|
</project>
|