You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.6 KiB
83 lines
2.6 KiB
4 months ago
|
<?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>
|
||
|
<artifactId>win</artifactId>
|
||
|
<groupId>com.win</groupId>
|
||
|
<version>4.7.9</version>
|
||
|
</parent>
|
||
|
<artifactId>win-print</artifactId>
|
||
|
|
||
|
<description>
|
||
|
打印服务模块
|
||
|
</description>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Mysql驱动包 -->
|
||
|
<dependency>
|
||
|
<groupId>com.mysql</groupId>
|
||
|
<artifactId>mysql-connector-j</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 核心模块-->
|
||
|
<dependency>
|
||
|
<groupId>com.win</groupId>
|
||
|
<artifactId>win-common</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- <!– 定时任务–>-->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>com.win</groupId>-->
|
||
|
<!-- <artifactId>win-quartz</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!--pdf工具 -->
|
||
|
<!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/com.itextpdf/html2pdf -->
|
||
|
<dependency>
|
||
|
<groupId>com.itextpdf</groupId>
|
||
|
<artifactId>html2pdf</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.itextpdf</groupId>
|
||
|
<artifactId>itext7-core</artifactId>
|
||
|
<type>pom</type>
|
||
|
</dependency>
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.xhtmlrenderer</groupId>-->
|
||
|
<!-- <artifactId>flying-saucer-pdf</artifactId>-->
|
||
|
<!-- </dependency>-->
|
||
|
<!--二维码工具 -->
|
||
|
<!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.zxing</groupId>
|
||
|
<artifactId>core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.zxing</groupId>
|
||
|
<artifactId>javase</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.swagger.core.v3</groupId>
|
||
|
<artifactId>swagger-annotations-jakarta</artifactId>
|
||
|
<version>2.2.21</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|