Files
weiyu/modules/social/pom.xml

38 lines
951 B
XML
Raw Normal View History

2024-03-29 16:26:33 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2024-04-07 10:54:47 +08:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2024-03-29 16:26:33 +08:00
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-03-29 16:26:33 +08:00
</parent>
2024-07-09 11:10:23 +08:00
2024-05-21 09:02:02 +08:00
<artifactId>bytedesk-module-social</artifactId>
2024-08-06 08:18:01 +08:00
2024-07-08 22:11:03 +08:00
<name>bytedesk-module-social</name>
2024-10-21 07:19:58 +08:00
<description>https://ai.bytedesk.com</description>
2024-03-29 16:26:33 +08:00
<dependencies>
<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>
</dependencies>
<build>
<plugins>
2024-04-30 09:37:49 +08:00
<!-- <plugin>
2024-03-29 16:26:33 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2024-04-30 09:37:49 +08:00
</plugin> -->
2024-03-29 16:26:33 +08:00
</plugins>
</build>
2024-04-07 10:54:47 +08:00
</project>