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>
|
|
|
|
|
<proguard.version>7.4.2</proguard.version>
|
|
|
|
|
<proguard.maven.plugin.version>2.6.1</proguard.maven.plugin.version>
|
|
|
|
|
</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>
|
2024-04-30 09:37:49 +08:00
|
|
|
<!-- <plugin>
|
|
|
|
|
<groupId>com.github.wvengen</groupId>
|
|
|
|
|
<artifactId>proguard-maven-plugin</artifactId>
|
|
|
|
|
<version>${proguard.maven.plugin.version}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>proguard</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<injar>${project.build.finalName}.jar</injar>
|
|
|
|
|
<outjar>${project.build.finalName}.jar</outjar>
|
|
|
|
|
<obfuscate>true</obfuscate>
|
|
|
|
|
<attach>true</attach>
|
|
|
|
|
<proguardInclude>${project.basedir}/proguard.cfg</proguardInclude>
|
|
|
|
|
<inLibsFilter>!META-INF/**</inLibsFilter>
|
|
|
|
|
<outputDirectory>${project.basedir}/target</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin> -->
|
2024-04-07 10:54:47 +08:00
|
|
|
<!-- <plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin> -->
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|