Files
weiyu/modules/service/pom.xml

69 lines
1.7 KiB
XML
Raw Normal View History

2024-04-07 10:54:47 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2024-07-08 21:28:05 +08:00
<parent>
<groupId>com.bytedesk</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>modules</artifactId>
<version>${revision}</version>
2024-04-07 10:54:47 +08:00
</parent>
2024-07-09 11:10:23 +08:00
<artifactId>bytedesk-module-service</artifactId>
2024-08-06 08:18:01 +08:00
2024-07-05 17:07:22 +08:00
<name>bytedesk-module-service</name>
2024-10-21 07:19:58 +08:00
<description>https://ai.bytedesk.com</description>
2024-04-07 10:54:47 +08:00
2024-04-30 09:37:49 +08:00
<properties>
2025-01-10 10:25:32 +08:00
2024-04-30 09:37:49 +08:00
</properties>
2024-04-07 10:54:47 +08:00
<dependencies>
<!-- ///////////////////////////////////////////////////////////////////////////// -->
2024-08-06 08:18:01 +08:00
2024-06-12 16:32:58 +08:00
<dependency>
<groupId>com.bytedesk</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>bytedesk-module-core</artifactId>
2024-07-09 12:38:12 +08:00
<version>${revision}</version>
2024-06-12 16:32:58 +08:00
<scope>provided</scope>
</dependency>
2024-04-07 10:54:47 +08:00
<dependency>
<groupId>com.bytedesk</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>bytedesk-module-kbase</artifactId>
<version>${revision}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-ai</artifactId>
2024-07-09 12:38:12 +08:00
<version>${revision}</version>
2024-04-07 10:54:47 +08:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.bytedesk</groupId>
2024-05-21 09:02:02 +08:00
<artifactId>bytedesk-module-team</artifactId>
2024-07-09 12:38:12 +08:00
<version>${revision}</version>
2024-04-07 10:54:47 +08:00
<scope>provided</scope>
</dependency>
2024-08-06 08:18:01 +08:00
<!-- ///////////////////////////////////////////////////////////////////////////// -->
2024-04-07 10:54:47 +08:00
</dependencies>
<build>
<plugins>
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin> -->
</plugins>
</build>
</project>