62 lines
1.9 KiB
XML
62 lines
1.9 KiB
XML
<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.czblood</groupId>
|
|
<artifactId>blood</artifactId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
|
|
<artifactId>blood_bus</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>blood_bus</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.czblood</groupId>
|
|
<artifactId>blood_system</artifactId>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
<artifactId>jasperreports</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lowagie</groupId>
|
|
<artifactId>itext</artifactId>
|
|
</dependency>
|
|
<!-- iText 7 核心库 -->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>kernel</artifactId>
|
|
</dependency>
|
|
|
|
<!-- iText 7 布局库 -->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>layout</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 中文转拼音 -->
|
|
<dependency>
|
|
<groupId>com.belerweb</groupId>
|
|
<artifactId>pinyin4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
</dependency>
|
|
|
|
<!-- websocket -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|