You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by su...@apache.org on 2022/12/17 15:50:25 UTC

[shardingsphere] branch master updated: Unify prop of target.directory (#22939)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0093311c30f Unify prop of target.directory (#22939)
0093311c30f is described below

commit 0093311c30ffbc769b0578b529215f2c20d8b355
Author: Liang Zhang <zh...@apache.org>
AuthorDate: Sat Dec 17 23:50:18 2022 +0800

    Unify prop of target.directory (#22939)
---
 agent/bootstrap/pom.xml                       | 1 -
 agent/plugins/metrics/type/prometheus/pom.xml | 2 +-
 agent/plugins/tracing/pom.xml                 | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/agent/bootstrap/pom.xml b/agent/bootstrap/pom.xml
index fdd0433619f..80a6ca961a3 100644
--- a/agent/bootstrap/pom.xml
+++ b/agent/bootstrap/pom.xml
@@ -71,7 +71,6 @@
                                     <exclude>com.google.guava:listenablefuture:jar:*</exclude>
                                     <exclude>com.google.j2objc:j2objc-annotations:jar:*</exclude>
                                     <exclude>org.checkerframework:checker-qual:jar:</exclude>
-                                    <exclude>com.h2database:h2:jar:</exclude>
                                 </excludes>
                             </artifactSet>
                             <relocations>
diff --git a/agent/plugins/metrics/type/prometheus/pom.xml b/agent/plugins/metrics/type/prometheus/pom.xml
index b71ce90a97a..55d5cd5f649 100644
--- a/agent/plugins/metrics/type/prometheus/pom.xml
+++ b/agent/plugins/metrics/type/prometheus/pom.xml
@@ -75,7 +75,7 @@
             <plugin>
                 <artifactId>maven-shade-plugin</artifactId>
                 <configuration>
-                    <outputFile>${metrics.target.directory}/${project.build.finalName}.jar</outputFile>
+                    <outputFile>${target.directory}/${project.build.finalName}.jar</outputFile>
                 </configuration>
             </plugin>
         </plugins>
diff --git a/agent/plugins/tracing/pom.xml b/agent/plugins/tracing/pom.xml
index c0d79308532..c5313940f78 100644
--- a/agent/plugins/tracing/pom.xml
+++ b/agent/plugins/tracing/pom.xml
@@ -43,7 +43,7 @@
             <plugin>
                 <artifactId>maven-shade-plugin</artifactId>
                 <configuration>
-                    <outputFile>${tracing.target.directory}/${project.build.finalName}.jar</outputFile>
+                    <outputFile>${target.directory}/${project.build.finalName}.jar</outputFile>
                 </configuration>
             </plugin>
         </plugins>