From commits-return-18237-archive-asf-public=cust-asf.ponee.io@struts.apache.org Tue Dec 18 12:44:49 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 47ECB180669 for ; Tue, 18 Dec 2018 12:44:49 +0100 (CET) Received: (qmail 88875 invoked by uid 500); 18 Dec 2018 11:44:48 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 88866 invoked by uid 99); 18 Dec 2018 11:44:48 -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; Tue, 18 Dec 2018 11:44:48 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id C6BBB85286; Tue, 18 Dec 2018 11:44:47 +0000 (UTC) Date: Tue, 18 Dec 2018 11:44:47 +0000 To: "commits@struts.apache.org" Subject: [struts] branch master updated: fix environment location MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154513348772.10143.15225837231395547684@gitbox.apache.org> From: yasserzamani@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: struts X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 18576808e471c99d54623813e9d9941172b8d000 X-Git-Newrev: 357b9c70b000e9b8c3ebb2eda44e5b92c42971df X-Git-Rev: 357b9c70b000e9b8c3ebb2eda44e5b92c42971df 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. yasserzamani pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts.git The following commit(s) were added to refs/heads/master by this push: new 357b9c7 fix environment location 357b9c7 is described below commit 357b9c70b000e9b8c3ebb2eda44e5b92c42971df Author: Yasser Zamani AuthorDate: Tue Dec 18 15:13:52 2018 +0330 fix environment location --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5834162..4e58b88 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,12 +19,13 @@ pipeline { pollSCM 'H/15 * * * *' } + environment { + MAVEN_OPTS = "-Xmx1024m -XX:MaxPermSize=256m" + } + stages { stage('Build') { steps { - environment { - MAVEN_OPTS = "-Xmx1024m -XX:MaxPermSize=256m" - } sh 'mvn --version' sh 'mvn clean source:jar javadoc:jar install deploy -DskipWiki -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2' }