From ab3fb89d8a5bed2dddaf2f88ee1935ecc6a790e1 Mon Sep 17 00:00:00 2001
From: Michael Yang <fuhai999@gmail.com>
Date: 星期四, 15 五月 2025 18:09:14 +0800
Subject: [PATCH] refactor: 优化 pom 版本构建

---
 aiflowy-starter/pom.xml |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/aiflowy-starter/pom.xml b/aiflowy-starter/pom.xml
index 23c2e6a..16dda43 100644
--- a/aiflowy-starter/pom.xml
+++ b/aiflowy-starter/pom.xml
@@ -1,17 +1,20 @@
 <?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">
+<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>
     <parent>
         <groupId>tech.aiflowy</groupId>
         <artifactId>aiflowy</artifactId>
-        <version>1.0.2</version>
+        <version>${revision}</version>
     </parent>
 
+    <name>aiflowy-starter</name>
     <artifactId>aiflowy-starter</artifactId>
-
     <packaging>jar</packaging>
 
     <properties>
+        <maven.compiler.source>8</maven.compiler.source>
+        <maven.compiler.target>8</maven.compiler.target>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
@@ -19,22 +22,18 @@
         <dependency>
             <groupId>tech.aiflowy</groupId>
             <artifactId>aiflowy-module-ai</artifactId>
-            <version>1.0.2</version>
         </dependency>
         <dependency>
             <groupId>tech.aiflowy</groupId>
             <artifactId>aiflowy-module-auth</artifactId>
-            <version>1.0.2</version>
         </dependency>
         <dependency>
             <groupId>tech.aiflowy</groupId>
             <artifactId>aiflowy-module-common</artifactId>
-            <version>1.0.2</version>
         </dependency>
         <dependency>
             <groupId>tech.aiflowy</groupId>
             <artifactId>aiflowy-module-autoconfig</artifactId>
-            <version>1.0.2</version>
         </dependency>
         <dependency>
             <groupId>com.zaxxer</groupId>

--
Gitblit v1.8.0