Skip to content

Commit

Permalink
Update tag for v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrimes committed Jan 14, 2021
1 parent 204df6a commit f1f6c04
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@ The branching strategy is very simple and is based on
long-lived branches, all changes are made via pull requests and will be the
subject of an issue branch that is created from and targeting `master`.

We release frequently, and sometimes we will make use of a short-lived release
branch to aggregate more than one PR into a new version.
We release frequently, and sometimes we will make use of a short-lived branch to
aggregate more than one PR into a new version.

The Maven POM version on `master` will be either a release version, or a version
of the form `[latest release version]-master-SNAPSHOT`. Builds are always
Maven POM versions on `master` are always release versions. Builds are always
verified to be green within CI before merging to master. Merging to master
automatically triggers publishing of artifacts and deployment of the software to
production environments such as the Pathling web site and sandbox instance.
Expand Down
2 changes: 1 addition & 1 deletion encoders/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>au.csiro.pathling</groupId>
<artifactId>pathling</artifactId>
<version>3.0.0-master-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<artifactId>encoders</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion fhir-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>au.csiro.pathling</groupId>
<artifactId>pathling</artifactId>
<version>3.0.0-master-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<artifactId>fhir-server</artifactId>
<packaging>jar</packaging>
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<groupId>au.csiro.pathling</groupId>
<artifactId>pathling</artifactId>
<version>3.0.0-master-SNAPSHOT</version>
<version>3.0.0</version>
<packaging>pom</packaging>

<name>Pathling</name>
Expand Down Expand Up @@ -243,6 +243,13 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>au.csiro.pathling</groupId>
<artifactId>pathling</artifactId>
<version>3.0.0-master-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>site</artifactId>
Expand Down

0 comments on commit f1f6c04

Please sign in to comment.