You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2022/01/11 01:23:12 UTC

[iotdb] branch master updated: Fix JenkinsCI deploying error (#4761)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d7360bc  Fix JenkinsCI deploying error (#4761)
d7360bc is described below

commit d7360bc087dfb04c9a606e14bcf2f1427467b4e1
Author: Haonan <hh...@outlook.com>
AuthorDate: Tue Jan 11 09:22:11 2022 +0800

    Fix JenkinsCI deploying error (#4761)
---
 Jenkinsfile | 2 +-
 jenkins.pom | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 3b5979f..0f5e6b6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -141,7 +141,7 @@ pipeline {
             steps {
                 echo 'Deploying'
                 // Deploy the artifacts using the wagon-maven-plugin.
-                sh 'mvn -f jenkins.pom -X -P deploy-snapshots -P client-cpp wagon:upload -P get-jar-with-dependencies -P !library-udf'
+                sh 'mvn -f jenkins.pom -X -P deploy-snapshots -P client-cpp wagon:upload -P get-jar-with-dependencies'
             }
         }
 
diff --git a/jenkins.pom b/jenkins.pom
index 046af10..c630274 100644
--- a/jenkins.pom
+++ b/jenkins.pom
@@ -55,6 +55,7 @@
                         <configuration>
                             <fromDir>${project.basedir}/local-snapshots-dir</fromDir>
                             <includes>**</includes>
+                            <excludes>library-udf</excludes>
                             <serverId>apache.snapshots.https</serverId>
                             <url>${distMgmtSnapshotsUrl}</url>
                         </configuration>