You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/03/04 15:56:58 UTC

[commons-digester] branch master updated: Add simple default goal.

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-digester.git


The following commit(s) were added to refs/heads/master by this push:
     new ea95286  Add simple default goal.
ea95286 is described below

commit ea952861749caeca743a4e4e1560158c831f7ccb
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Mar 4 10:56:56 2022 -0500

    Add simple default goal.
---
 .github/workflows/maven.yml | 2 +-
 pom.xml                     | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 34b72d0..069dc2a 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -44,4 +44,4 @@ jobs:
         distribution: 'temurin'
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V package --file pom.xml --no-transfer-progress
+      run: mvn -V --file pom.xml --no-transfer-progress
diff --git a/pom.xml b/pom.xml
index a29650d..1f393a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -207,10 +207,11 @@
   </properties>
 
   <build>
+    <defaultGoal>clean verify</defaultGoal>
     <plugins>
       <plugin>
         <!--
-          - A number of the pre-maven test case "suport" classes have names starting with Test.
+          - A number of the pre-maven test case "support" classes have names starting with Test.
           - This confuses the maven surefire "auto-detect test case" functionality, so we
           - need to manually exclude them.
           -->