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"
44
44
# so this is a two step process.
45
45
export VERSION_PLACEHOLDER=99999999999999-SNAPSHOT
46
46
for project in parent aggregate empiricism; do
47
- mvn -f " $project " install
47
+ mvn -f " $project " /pom.xml install
48
48
done
49
49
for project in parent aggregate empiricism; do
50
- mvn -f " $project " \
50
+ mvn -f " $project " /pom.xml \
51
51
release:update-versions \
52
52
-DautoVersionSubmodules=true \
53
53
-DdevelopmentVersion=" $VERSION_PLACEHOLDER "
@@ -66,7 +66,7 @@ perl -i.bak \
66
66
$EDITOR change_log.md
67
67
68
68
# 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 \
70
70
-DperformRelease=true
71
71
72
72
# Commit and tag
@@ -75,7 +75,7 @@ git tag -m "Release $NEW_VERSION" -s "release-$NEW_VERSION"
75
75
git push origin " release-$NEW_VERSION "
76
76
77
77
# 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 \
79
79
-DperformRelease=true
80
80
81
81
# Bump the development version.
You can’t perform that action at this time.
0 commit comments