Skip to content

Commit

Permalink
Downgrade project version (#92)
Browse files Browse the repository at this point in the history
* versions

* skip tests

* add -pdeploy

* change profile

* remove pdeploy
  • Loading branch information
shermosa committed Jul 21, 2021
1 parent 9afc7b1 commit dba2a2e
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
git config user.name "eg-oss-ci"
- name: Run Maven Targets
run: mvn release:prepare release:perform --settings $GITHUB_WORKSPACE/settings.xml --activate-profiles oss-release --batch-mode --show-version --no-transfer-progress
# we are skipping the tests because we are testing the release.yml and they take too long, but once it works they shouldn't be skipped
run: mvn release:prepare release:perform --settings $GITHUB_WORKSPACE/settings.xml --activate-profiles sonatype-oss-release --batch-mode --show-version --no-transfer-progress -Dskip.unit.tests=true -Dskip.integration.tests=true
env:
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-cleanup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-cleanup</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-integration-tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-metadata-cleanup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-metadata-cleanup</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-path-cleanup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-path-cleanup</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-scheduler-apiary/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-scheduler-apiary</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-scheduler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-scheduler</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion beekeeper-vacuum-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>beekeeper-parent</artifactId>
<groupId>com.expediagroup</groupId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>beekeeper-vacuum-tool</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>beekeeper-parent</artifactId>
<version>3.2.1-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>Beekeeper is a service which manages the cleanup of tables and unreferenced S3 paths.</description>
<inceptionYear>2019</inceptionYear>
<packaging>pom</packaging>
Expand Down

0 comments on commit dba2a2e

Please sign in to comment.