93 lines
2.8 KiB
XML
Raw Normal View History

2025-05-21 16:19:52 +08:00
<?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>
<parent>
<groupId>com.czlis</groupId>
<artifactId>czlis</artifactId>
<version>8.0.0</version>
</parent>
<artifactId>lis-interfaceCommon</artifactId>
2025-06-24 18:01:25 +08:00
<dependencies>
<dependency>
<groupId>com.czlis</groupId>
<artifactId>lis-common</artifactId>
</dependency>
2025-07-23 14:19:57 +08:00
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.barbecue</groupId>
<artifactId>barbecue</artifactId>
<version>1.5-beta1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
2025-07-24 17:55:06 +08:00
<dependency>
<groupId>net.sf.barcode4j</groupId>
<artifactId>barcode4j-light</artifactId>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-all</artifactId>
</dependency>
2025-08-29 14:16:35 +08:00
<dependency>
<groupId>com.czlis</groupId>
<artifactId>lisresources</artifactId>
</dependency>
2025-09-22 16:32:00 +08:00
<!-- iText 7 核心库 -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>kernel</artifactId>
</dependency>
2025-09-20 22:37:20 +08:00
2025-09-22 16:32:00 +08:00
<!-- iText 7 布局库 -->
2025-09-20 22:37:20 +08:00
<dependency>
2025-09-22 16:32:00 +08:00
<groupId>com.itextpdf</groupId>
<artifactId>layout</artifactId>
2025-09-20 22:37:20 +08:00
</dependency>
2025-09-22 16:32:00 +08:00
2025-09-29 10:34:32 +08:00
<!-- 中文转拼音 -->
<dependency>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
</dependency>
2026-09-11 18:51:31 +08:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
</dependency>
2026-09-16 16:16:20 +08:00
2025-11-18 20:29:58 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
2025-11-28 09:09:49 +08:00
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
</dependency>
2025-11-18 20:29:58 +08:00
2025-06-24 18:01:25 +08:00
</dependencies>
2025-05-21 16:19:52 +08:00
</project>