mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-01 06:20:17 +00:00
113 lines
2.8 KiB
XML
113 lines
2.8 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.bytedesk</groupId>
|
|
<artifactId>modules</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>bytedesk-module-ticket</artifactId>
|
|
|
|
<name>bytedesk-module-ticket</name>
|
|
<description>https://ai.bytedesk.com</description>
|
|
|
|
<properties>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.statemachine</groupId>
|
|
<artifactId>spring-statemachine-starter</artifactId>
|
|
<version>4.0.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- ///////////////////////////////////////////////////////////////////////////// -->
|
|
|
|
<dependency>
|
|
<groupId>com.bytedesk</groupId>
|
|
<artifactId>bytedesk-module-core</artifactId>
|
|
<version>${revision}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.bytedesk</groupId>
|
|
<artifactId>bytedesk-module-kbase</artifactId>
|
|
<version>${revision}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.bytedesk</groupId>
|
|
<artifactId>bytedesk-module-ai</artifactId>
|
|
<version>${revision}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.bytedesk</groupId>
|
|
<artifactId>bytedesk-module-team</artifactId>
|
|
<version>${revision}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- ///////////////////////////////////////////////////////////////////////////// -->
|
|
|
|
<!-- Excel导出 -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>5.2.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>5.2.3</version>
|
|
</dependency>
|
|
|
|
<!-- PDF导出 -->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>5.5.13.3</version>
|
|
</dependency>
|
|
|
|
<!-- CSV导出 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-csv</artifactId>
|
|
<version>1.10.0</version>
|
|
</dependency>
|
|
|
|
<!-- Email -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Thymeleaf for email templates -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- <plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin> -->
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |