Skip to content

Commit

Permalink
Merge pull request #690 from lognaturel/release-3.5.0
Browse files Browse the repository at this point in the history
Set version for v3.5.0
  • Loading branch information
seadowg authored Jul 28, 2022
2 parents aff5456 + 29b5fe9 commit e787e72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ Deviations from OSSRH's documentation are that maintainers use `gpg2` v2.1 and g
</settings>
```

Official releases are built by [@yanokwa](https://github.com/yanokwa) using AdoptOpenJDK v1.8.x.

To generate official signed releases, you'll need the GPG folder, GPG passwords, a configured `secrets.xml` file.
Official releases are built by a Github action when a commit is tagged. Before tagging a release:

1. Update the version in `build.gradle` and `pom.xml` and merge the changes to master.
* Use `x.x.x-SNAPSHOT` for snapshots releases and `x.x.x` for production releases.

To manually generate official signed releases, you'll need the GPG folder, GPG passwords, a configured `secrets.xml` file.
1. Run `mvn -v` to confirm the Java version and vendor used to build the release.
1. In the repo folder, run `mvn -s secrets.xml clean deploy` to publish.
* If successful, both snapshots and production releases will appear in OSSRH [here](https://oss.sonatype.org/content/groups/public/org/getodk/javarosa/).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jar {
// Be sure to update version in pom.xml to match
// snapshot release = x.x.x-SNAPSHOT
// production release = x.x.x
version = '3.5.0-SNAPSHOT'
version = '3.5.0'
archiveName = baseName + '-' + version + '.jar'

manifest {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Be sure to update version in build.gradle to match -->
<!-- snapshot release = x.x.x-SNAPSHOT -->
<!-- production release = x.x.x -->
<version>3.5.0-SNAPSHOT</version>
<version>3.5.0</version>
<packaging>jar</packaging>
<name>javarosa</name>
<description>A Java library for rendering forms that are compliant with ODK XForms spec</description>
Expand Down

0 comments on commit e787e72

Please sign in to comment.