2024-10-29 08:34:09 +00: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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>ktg</artifactId>
|
|
|
|
<groupId>com.ktg</groupId>
|
|
|
|
<version>3.8.2</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>ktg-mes</artifactId>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
MES 系统
|
|
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!--jasperreport组件-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
<artifactId>jasperreports</artifactId>
|
|
|
|
<version>6.18.1</version>
|
|
|
|
</dependency>
|
2024-11-05 09:25:56 +00:00
|
|
|
|
2024-10-29 08:34:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jasperreports</groupId>
|
|
|
|
<artifactId>jasperreports-fonts</artifactId>
|
|
|
|
<version>6.18.1</version>
|
|
|
|
</dependency>
|
|
|
|
<!--PDF生成组件-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
|
<version>5.5.11</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
<artifactId>itext-pdfa</artifactId>
|
|
|
|
<version>5.5.11</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
<artifactId>itext-asian</artifactId>
|
|
|
|
<version>5.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- 通用工具-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ktg</groupId>
|
|
|
|
<artifactId>ktg-framework</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
2024-12-03 09:19:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>jcifs</groupId>
|
|
|
|
<artifactId>jcifs</artifactId>
|
|
|
|
<version>1.3.17</version>
|
|
|
|
</dependency>
|
2024-11-02 01:41:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ktg</groupId>
|
|
|
|
<artifactId>ktg-generator</artifactId>
|
|
|
|
</dependency>
|
2024-12-11 09:24:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
2024-12-18 02:09:16 +00:00
|
|
|
<!--CXF webservices-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
|
|
|
|
<version>3.4.4</version>
|
|
|
|
</dependency>
|
2024-10-29 08:34:09 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|