Skip to content

Commit

Permalink
Revert release 0.5.3.1 and update Sonatype creds to use token (#828)
Browse files Browse the repository at this point in the history
* Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 117b188.

* Revert "[maven-release-plugin] prepare release 0.5.3.1"

This reverts commit a3d7db5.

* Update secrets to use token for logon to Sonatype repo1
  • Loading branch information
skl83 authored Sep 2, 2024
1 parent 117b188 commit 187687e
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .semaphore/publish_to_maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ blocks :
- chmod +x .semaphore/initgpg.sh
- . .semaphore/initgpg.sh
- export SONATYPE_SERVER_ID=ossrh
- export SONATYPE_OSSRH_USER=$(vault kv get --field=user v1/ci/kv/sonatype/confluent)
- export SONATYPE_OSSRH_PASSWORD=$(vault kv get --field=password v1/ci/kv/sonatype/confluent)
- export SONATYPE_OSSRH_USER=$(vault kv get --field=user_token_username v1/ci/kv/sonatype/confluent)
- export SONATYPE_OSSRH_PASSWORD=$(vault kv get --field=user_token_password v1/ci/kv/sonatype/confluent)
- export SETTINGS_XML_PATH="$HOME/.m2/settings.xml"
- python .semaphore/update_maven_settings.py # Update maven settings with Sonatype credentials
- ./mvnw --batch-mode clean deploy -Pmaven-central -Pci -Dgpg.passphrase=$PASSPHRASE -DskipTests
Expand Down
2 changes: 1 addition & 1 deletion parallel-consumer-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-parent</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-examples</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-example-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-examples</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-example-metrics</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-examples</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-example-reactor</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-examples</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-example-streams</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-examples</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-example-vertx</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion parallel-consumer-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>parallel-consumer-parent</artifactId>
<groupId>io.confluent.parallelconsumer</groupId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion parallel-consumer-reactor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>parallel-consumer-parent</artifactId>
<groupId>io.confluent.parallelconsumer</groupId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion parallel-consumer-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-parent</artifactId>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
</parent>

<artifactId>parallel-consumer-vertx</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<groupId>io.confluent.parallelconsumer</groupId>
<artifactId>parallel-consumer-parent</artifactId>
<name>Confluent Parallel Consumer</name>
<version>0.5.3.2-SNAPSHOT</version>
<version>0.5.3.1-SNAPSHOT</version>
<description>Parallel Apache Kafka client wrapper with client side queueing, a simpler consumer/producer API with key concurrency and extendable non-blocking IO processing.
</description>
<url>https://confluent.io</url>
Expand Down

0 comments on commit 187687e

Please sign in to comment.