Skip to content

Commit 801e248

Browse files
authored
pass arguments to the release process correctly (#126)
1 parent 210c87e commit 801e248

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/releasing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Release builds should only be run on Mac OSX with Docker. This is needed so that
88

99
1. Ensure you are on branch `master` and that the library is building correctly.
1010
2. Update [CHANGELOG.md](../CHANGELOG.md) to have the correct date and new version number, update [README.md](../README.md) to have the correct version numbers, and commit.
11-
3. `mvn release:prepare -Dh3.github.artifacts.use=true` Use the new version number when prompted.
12-
4. `mvn release:perform -Dh3.github.artifacts.use=true`
11+
3. `mvn release:prepare` Use the new version number when prompted.
12+
4. `mvn release:perform`
1313
5. If this looks good, close and release the build in [Sonatype Nexus Manager](https://oss.sonatype.org/).
1414
6. Update `CHANGELOG.md` to have an Unreleased section, and commit. The release is now done and development can resume from this point.
1515

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@
341341
<configuration>
342342
<tagNameFormat>v@{project.version}</tagNameFormat>
343343
<releaseProfiles>release-profile</releaseProfiles>
344+
<arguments>-Dh3.github.artifacts.use=true</arguments>
344345
</configuration>
345346
</plugin>
346347
<plugin>

0 commit comments

Comments
 (0)