File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ cd "$RELEASE_CLONE"
4444# so this is a two step process.
4545export VERSION_PLACEHOLDER=99999999999999-SNAPSHOT
4646for project in parent aggregate empiricism; do
47- mvn -f " $project " install
47+ mvn -f " $project " /pom.xml install
4848done
4949for 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"
7575git 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.
You can’t perform that action at this time.
0 commit comments