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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2024-05-25 14:51:17 +08:00
|
|
|
<!-- https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.2-Release-Notes -->
|
2024-07-20 08:25:06 +08:00
|
|
|
<parent>
|
2024-03-29 16:26:33 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2025-08-08 11:08:20 +08:00
|
|
|
<version>3.5.0</version>
|
2024-07-20 08:25:06 +08:00
|
|
|
</parent>
|
2024-05-25 14:51:17 +08:00
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
<groupId>com.bytedesk</groupId>
|
|
|
|
|
<artifactId>im</artifactId>
|
2024-07-09 12:38:12 +08:00
|
|
|
<version>${revision}</version>
|
2024-03-29 16:26:33 +08:00
|
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<modules>
|
2025-01-21 11:49:09 +08:00
|
|
|
<module>channels</module>
|
2024-03-29 16:26:33 +08:00
|
|
|
<module>modules</module>
|
2025-01-16 14:38:20 +08:00
|
|
|
<module>plugins</module>
|
2024-03-29 16:26:33 +08:00
|
|
|
<module>starter</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>17</java.version>
|
2025-05-28 21:52:57 +08:00
|
|
|
<sofa-boot.version>4.2.0</sofa-boot.version>
|
2024-03-29 16:26:33 +08:00
|
|
|
<querydsl.version>5.1.0</querydsl.version>
|
2024-08-06 08:18:01 +08:00
|
|
|
<flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
|
2025-09-18 14:36:17 +08:00
|
|
|
<jackson.version>2.19.0</jackson.version>
|
2025-10-11 09:56:14 +08:00
|
|
|
<flowable.version>7.2.0</flowable.version>
|
2025-11-15 17:03:08 +08:00
|
|
|
<drools.version>10.1.0</drools.version>
|
2025-08-08 11:35:00 +08:00
|
|
|
<jedis.version>6.0.0</jedis.version>
|
2025-05-28 16:59:55 +08:00
|
|
|
<springdoc.version>2.8.8</springdoc.version>
|
2025-11-23 09:46:05 +08:00
|
|
|
<spring-ai.version>1.1.0</spring-ai.version>
|
|
|
|
|
<spring-ai-alibaba.version>1.1.0.0-M5</spring-ai-alibaba.version>
|
2025-11-22 13:38:43 +08:00
|
|
|
<revision>0.9.9</revision>
|
2024-03-29 16:26:33 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2024-08-06 08:18:01 +08:00
|
|
|
|
2025-02-23 23:26:21 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-03-29 16:26:33 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2024-07-09 17:09:52 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
2024-08-06 08:18:01 +08:00
|
|
|
<version>${flatten-maven-plugin.version}</version>
|
2024-07-09 17:09:52 +08:00
|
|
|
<inherited>true</inherited>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>flatten</id>
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>flatten</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
|
|
|
<pomElements>
|
|
|
|
|
<parent>expand</parent>
|
|
|
|
|
<distributionManagement>remove</distributionManagement>
|
|
|
|
|
<repositories>remove</repositories>
|
|
|
|
|
</pomElements>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>flatten.clean</id>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>clean</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2025-03-03 22:35:18 +08:00
|
|
|
<!-- Javadoc 插件配置 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.11.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<charset>UTF-8</charset>
|
|
|
|
|
<docencoding>UTF-8</docencoding>
|
|
|
|
|
<show>private</show>
|
|
|
|
|
<nohelp>true</nohelp>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
|
<additionalOptions>
|
|
|
|
|
<additionalOption>-Xdoclint:none</additionalOption>
|
|
|
|
|
</additionalOptions>
|
|
|
|
|
<excludePackageNames>*.test.*:*.tests.*:com.bytedesk.projects.*</excludePackageNames>
|
|
|
|
|
<outputDirectory>${project.basedir}/starter/src/main/resources/static</outputDirectory>
|
|
|
|
|
<reportOutputDirectory>${project.basedir}/starter/src/main/resources/static</reportOutputDirectory>
|
|
|
|
|
<destDir>apidoc</destDir>
|
|
|
|
|
<minmemory>128m</minmemory>
|
|
|
|
|
<maxmemory>512m</maxmemory>
|
|
|
|
|
<fork>true</fork>
|
|
|
|
|
<detectJavaApiLink>false</detectJavaApiLink>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-03-29 16:26:33 +08:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|