From commits-return-14659-archive-asf-public=cust-asf.ponee.io@archiva.apache.org Mon Apr 16 20:50:22 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id F40D9180608 for ; Mon, 16 Apr 2018 20:50:21 +0200 (CEST) Received: (qmail 93022 invoked by uid 500); 16 Apr 2018 18:50:21 -0000 Mailing-List: contact commits-help@archiva.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@archiva.apache.org Delivered-To: mailing list commits@archiva.apache.org Received: (qmail 93013 invoked by uid 99); 16 Apr 2018 18:50:21 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Apr 2018 18:50:21 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8F3848067D; Mon, 16 Apr 2018 18:50:20 +0000 (UTC) Date: Mon, 16 Apr 2018 18:50:20 +0000 To: "commits@archiva.apache.org" Subject: [archiva-redback-components-spring-registry] branch master updated: Adding clean step and maven settings for build MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152390462054.30054.18420888769295057638@gitbox.apache.org> From: martin_s@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: archiva-redback-components-spring-registry X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: dd51c7c46b76ba5f1b25c38a0345afa61191af42 X-Git-Newrev: b834ec2a1b5e0bc362f00f72b1f9f7e673eed30f X-Git-Rev: b834ec2a1b5e0bc362f00f72b1f9f7e673eed30f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. martin_s pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/archiva-redback-components-spring-registry.git The following commit(s) were added to refs/heads/master by this push: new b834ec2 Adding clean step and maven settings for build b834ec2 is described below commit b834ec2a1b5e0bc362f00f72b1f9f7e673eed30f Author: Martin Stockhammer AuthorDate: Mon Apr 16 20:49:43 2018 +0200 Adding clean step and maven settings for build --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2b42241..3b25a21 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,6 +30,8 @@ def deploySettings = 'DefaultMavenSettingsProvider.1331204114925' node(labels) { + cleanWs() + stage ('Clone Sources') { git url: 'https://gitbox.apache.org/repos/asf/archiva-redback-components-spring-registry.git' } @@ -37,7 +39,8 @@ node(labels) { stage ('Build') { withMaven( maven: buildMvn, - jdk: buildJdk + jdk: buildJdk, + mavenSettingsConfig: deploySettings ) { // Run the maven build sh "mvn clean install -B -U -e -fae -Dmaven.compiler.fork=false" -- To stop receiving notification emails like this one, please contact martin_s@apache.org.