This is an automated email from the ASF dual-hosted git repository.

zhangxiaowei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozhera.git


The following commit(s) were added to refs/heads/master by this push:
     new e35d0e17 refactor: compile log with new groupId (#472) (#477)
e35d0e17 is described below

commit e35d0e175efa39df51abe712bed1dc731fe94fb9
Author: shanwb <[email protected]>
AuthorDate: Fri Sep 13 19:09:48 2024 +0800

    refactor: compile log with new groupId (#472) (#477)
---
 ozhera-log/log-agent-server/pom.xml |  4 ++--
 ozhera-log/log-agent/pom.xml        |  6 +++---
 ozhera-log/log-manager/pom.xml      |  8 ++++----
 ozhera-log/log-stream/pom.xml       |  4 ++--
 ozhera-log/pom.xml                  | 24 +++++++++++++++++++++++-
 5 files changed, 34 insertions(+), 12 deletions(-)

diff --git a/ozhera-log/log-agent-server/pom.xml 
b/ozhera-log/log-agent-server/pom.xml
index 56547688..aa1a0abb 100644
--- a/ozhera-log/log-agent-server/pom.xml
+++ b/ozhera-log/log-agent-server/pom.xml
@@ -60,12 +60,12 @@
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-api</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-common</artifactId>
         </dependency>
         <!--Microservice traceID generation-->
diff --git a/ozhera-log/log-agent/pom.xml b/ozhera-log/log-agent/pom.xml
index 47044fbc..981f28b4 100644
--- a/ozhera-log/log-agent/pom.xml
+++ b/ozhera-log/log-agent/pom.xml
@@ -59,12 +59,12 @@
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-common</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-api</artifactId>
         </dependency>
 
@@ -75,7 +75,7 @@
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>ozhera-tspandata</artifactId>
         </dependency>
 
diff --git a/ozhera-log/log-manager/pom.xml b/ozhera-log/log-manager/pom.xml
index b6ff5a92..1cd4d073 100644
--- a/ozhera-log/log-manager/pom.xml
+++ b/ozhera-log/log-manager/pom.xml
@@ -174,16 +174,16 @@
         </dependency>
         <!-- Internal dependencies -->
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-api</artifactId>
         </dependency>
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-common</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.ozhera</groupId>
-            <artifactId>ozhera-app</artifactId>
+            <artifactId>app-api</artifactId>
         </dependency>
 
         <dependency>
@@ -255,7 +255,7 @@
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>app-api</artifactId>
             <exclusions>
                 <exclusion>
diff --git a/ozhera-log/log-stream/pom.xml b/ozhera-log/log-stream/pom.xml
index ed9802ce..1442fa04 100644
--- a/ozhera-log/log-stream/pom.xml
+++ b/ozhera-log/log-stream/pom.xml
@@ -95,12 +95,12 @@
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-common</artifactId>
         </dependency>
 
         <dependency>
-            <groupId>run.mone</groupId>
+            <groupId>org.apache.ozhera</groupId>
             <artifactId>log-api</artifactId>
             <scope>compile</scope>
         </dependency>
diff --git a/ozhera-log/pom.xml b/ozhera-log/pom.xml
index a27d2c92..f5b50832 100644
--- a/ozhera-log/pom.xml
+++ b/ozhera-log/pom.xml
@@ -32,6 +32,28 @@
 
     <dependencyManagement>
         <dependencies>
+            <!-- inner module -->
+            <dependency>
+                <groupId>org.apache.ozhera</groupId>
+                <artifactId>log-api</artifactId>
+                <version>2.0.0-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.ozhera</groupId>
+                <artifactId>log-common</artifactId>
+                <version>2.0.0-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.ozhera</groupId>
+                <artifactId>app-api</artifactId>
+                <version>2.0.0-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.ozhera</groupId>
+                <artifactId>ozhera-tspandata</artifactId>
+                <version>2.0.0-SNAPSHOT</version>
+            </dependency>
+
             <dependency>
                 <groupId>org.apache.logging.log4j</groupId>
                 <artifactId>log4j-1.2-api</artifactId>
@@ -51,7 +73,7 @@
 
             <dependency>
                 <groupId>org.apache.ozhera</groupId>
-                <artifactId>ozhera-app</artifactId>
+                <artifactId>app-api</artifactId>
                 <version>2.0.0-SNAPSHOT</version>
             </dependency>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to