Skip to content

Commit 2308cbd

Browse files
committed
use explicit pom paths
1 parent a88f157 commit 2308cbd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RELEASE-checklist.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ cd "$RELEASE_CLONE"
4444
# so this is a two step process.
4545
export VERSION_PLACEHOLDER=99999999999999-SNAPSHOT
4646
for project in parent aggregate empiricism; do
47-
mvn -f "$project" install
47+
mvn -f "$project"/pom.xml install
4848
done
4949
for project in parent aggregate empiricism; do
50-
mvn -f "$project" \
50+
mvn -f "$project"/pom.xml \
5151
release:update-versions \
5252
-DautoVersionSubmodules=true \
5353
-DdevelopmentVersion="$VERSION_PLACEHOLDER"
@@ -66,7 +66,7 @@ perl -i.bak \
6666
$EDITOR change_log.md
6767

6868
# A dry run.
69-
mvn -f aggregate clean source:jar javadoc:jar verify \
69+
mvn -f aggregate/pom.xml clean source:jar javadoc:jar verify \
7070
-DperformRelease=true
7171

7272
# Commit and tag
@@ -75,7 +75,7 @@ git tag -m "Release $NEW_VERSION" -s "release-$NEW_VERSION"
7575
git push origin "release-$NEW_VERSION"
7676

7777
# Actually deploy.
78-
mvn -f aggregate clean source:jar javadoc:jar verify deploy:deploy \
78+
mvn -f aggregate/pom.xml clean source:jar javadoc:jar verify deploy:deploy \
7979
-DperformRelease=true
8080

8181
# Bump the development version.

0 commit comments

Comments
 (0)