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-modules/aiflowy-module-autoconfig/pom.xml |   48 +++++++++++++++++++++++++-----------------------
 1 files changed, 25 insertions(+), 23 deletions(-)

diff --git a/aiflowy-modules/aiflowy-module-autoconfig/pom.xml b/aiflowy-modules/aiflowy-module-autoconfig/pom.xml
index b62f776..7930209 100644
--- a/aiflowy-modules/aiflowy-module-autoconfig/pom.xml
+++ b/aiflowy-modules/aiflowy-module-autoconfig/pom.xml
@@ -1,28 +1,30 @@
 <?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>
-  <parent>
-    <groupId>tech.aiflowy</groupId>
-    <artifactId>aiflowy-modules</artifactId>
-    <version>1.0.2</version>
-  </parent>
+<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-modules</artifactId>
+        <version>${revision}</version>
+    </parent>
 
-  <artifactId>aiflowy-module-autoconfig</artifactId>
+    <name>aiflowy-module-autoconfig</name>
+    <artifactId>aiflowy-module-autoconfig</artifactId>
 
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
+    <properties>
+        <maven.compiler.source>8</maven.compiler.source>
+        <maven.compiler.target>8</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
 
-  <dependencies>
-    <dependency>
-      <groupId>tech.aiflowy</groupId>
-      <artifactId>aiflowy-common-web</artifactId>
-      <version>1.0.2</version>
-    </dependency>
-    <dependency>
-      <groupId>tech.aiflowy</groupId>
-      <artifactId>aiflowy-module-core</artifactId>
-      <version>1.0.2</version>
-    </dependency>
-  </dependencies>
+    <dependencies>
+        <dependency>
+            <groupId>tech.aiflowy</groupId>
+            <artifactId>aiflowy-common-web</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>tech.aiflowy</groupId>
+            <artifactId>aiflowy-module-core</artifactId>
+        </dependency>
+    </dependencies>
 </project>

--
Gitblit v1.8.0