Skip to content

Commit

Permalink
Have a Maven default goal configured
Browse files Browse the repository at this point in the history
That way any contributor can easily build by invoking maven without any
arguments, instead of going through the documentation to find the
correct command line.

Also this serves as documentation of being a good Maven project, since
it doesn't require "clean" to be used.
  • Loading branch information
Bananeweizen committed Sep 16, 2023
1 parent da3ae9c commit 1c8a42f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
</dependencies>

<build>
<defaultGoal>verify</defaultGoal>
<finalName>${project.artifactId}_${unqualifiedVersion}.${buildQualifier}</finalName>
<testSourceDirectory>test</testSourceDirectory>
<testResources>
Expand Down

0 comments on commit 1c8a42f

Please sign in to comment.