Files
weiyu/modules/team/pom.xml

55 lines
1.5 KiB
XML
Raw Normal View History

2024-03-29 16:26:33 +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>
<parent>
<groupId>com.bytedesk</groupId>
2024-08-06 08:18:01 +08:00
<artifactId>modules</artifactId>
<version>${revision}</version>
2024-03-29 16:26:33 +08:00
</parent>
2024-07-09 11:10:23 +08:00
<artifactId>bytedesk-module-team</artifactId>
2024-08-06 08:18:01 +08:00
2024-07-05 17:07:22 +08:00
<name>bytedesk-module-team</name>
2024-10-21 07:19:58 +08:00
<description>https://ai.bytedesk.com</description>
2024-03-29 16:26:33 +08:00
<dependencies>
<!--
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-websocket -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
2024-07-05 17:07:22 +08:00
<!-- ///////////////////////////////////////////////////////////////////////////// -->
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>com.bytedesk</groupId>
2024-05-21 09:02:02 +08:00
<artifactId>bytedesk-module-core</artifactId>
2024-07-09 12:38:12 +08:00
<version>${revision}</version>
2024-03-29 16:26:33 +08:00
<scope>provided</scope>
</dependency>
2024-07-05 17:07:22 +08:00
<!-- ///////////////////////////////////////////////////////////////////////////// -->
2024-03-29 16:26:33 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin> -->
</plugins>
</build>
</project>