From commits-return-75267-apmail-commons-commits-archive=commons.apache.org@commons.apache.org Mon Aug 3 13:29:21 2020 Return-Path: X-Original-To: apmail-commons-commits-archive@locus.apache.org Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with ESMTP id B63AF19872 for ; Mon, 3 Aug 2020 13:29:21 +0000 (UTC) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id 13A2912503D for ; Mon, 3 Aug 2020 13:29:21 +0000 (UTC) Received: (qmail 65447 invoked by uid 500); 3 Aug 2020 13:29:19 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 65216 invoked by uid 500); 3 Aug 2020 13:29:19 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 64993 invoked by uid 99); 3 Aug 2020 13:29:18 -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, 03 Aug 2020 13:29:18 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 59F4682437; Mon, 3 Aug 2020 13:29:18 +0000 (UTC) Date: Mon, 03 Aug 2020 13:29:20 +0000 To: "commits@commons.apache.org" Subject: [commons-lang] 02/05: Use the POM defaultGoal so that Travis and GitHub run the same builds. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: ggregory@apache.org In-Reply-To: <159646135819.1309.7492432439543916387@gitbox.apache.org> References: <159646135819.1309.7492432439543916387@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: commons-lang X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: 3b7d72e6cfdf3ea74e5de89412637079dbe3ed37 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20200803132918.59F4682437@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git commit 3b7d72e6cfdf3ea74e5de89412637079dbe3ed37 Author: Gary Gregory AuthorDate: Fri Jul 31 09:16:50 2020 -0400 Use the POM defaultGoal so that Travis and GitHub run the same builds. --- .github/workflows/maven.yml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ec976dc..7ebed4c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -39,4 +39,4 @@ jobs: with: java-version: ${{ matrix.java }} - name: Build with Maven - run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml + run: mvn -V -Ddoclint=all --file pom.xml diff --git a/pom.xml b/pom.xml index 2806277..ea9df57 100644 --- a/pom.xml +++ b/pom.xml @@ -634,7 +634,7 @@ - clean verify apache-rat:check checkstyle:check japicmp:cmp spotbugs:check javadoc:javadoc + clean package apache-rat:check checkstyle:check japicmp:cmp spotbugs:check javadoc:javadoc