This is an automated email from the ASF dual-hosted git repository.
wangguangyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere-elasticjob.git
The following commit(s) were added to refs/heads/master by this push:
new 7873f492c Add skip deploy on test module
new e4b7c2293 Merge pull request #2331 from terrymanu/dev
7873f492c is described below
commit 7873f492ce5b36cc3163d244a097f980bd813332
Author: zhangliang <[email protected]>
AuthorDate: Sun Oct 29 10:36:33 2023 +0800
Add skip deploy on test module
---
pom.xml | 8 ++++++++
test/util/pom.xml | 4 ++++
2 files changed, 12 insertions(+)
diff --git a/pom.xml b/pom.xml
index 49db7719f..605d77238 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,7 @@
<java.version>1.8</java.version>
<maven.version.range>[3.5.0,)</maven.version.range>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <maven.deploy.skip>false</maven.deploy.skip>
<!-- 3rd party library versions -->
<shardingsphere.version>5.4.1</shardingsphere.version>
@@ -509,6 +510,13 @@
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
</plugin>
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>${maven-deploy-plugin.version}</version>
+ <configuration>
+ <skip>${maven.deploy.skip}</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
diff --git a/test/util/pom.xml b/test/util/pom.xml
index 96e14fc0f..272a0e545 100644
--- a/test/util/pom.xml
+++ b/test/util/pom.xml
@@ -26,6 +26,10 @@
<artifactId>elasticjob-test-util</artifactId>
<name>${project.artifactId}</name>
+ <properties>
+ <maven.deploy.skip>true</maven.deploy.skip>
+ </properties>
+
<dependencies>
<dependency>
<groupId>org.apache.curator</groupId>