Skip to content

Commit 7f01369

Browse files
authored
Merge branch 'main' into dependabot/maven/kafka/org.apache.kafka-kafka-clients-3.9.1
2 parents 82bd024 + 0d96691 commit 7f01369

4 files changed

Lines changed: 12 additions & 15 deletions

File tree

.github/workflows/branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/setup-java@v1
3535
with:
3636
java-version: 8
37-
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
37+
server-id: central # Value of the distributionManagement/repository/id field of the pom.xml
3838
server-username: MAVEN_USERNAME # env variable for username in deploy
3939
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in deploy
4040
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import

.github/workflows/pr.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- name: Setup java
2020
uses: actions/setup-java@v2
2121
with:
22-
cache: 'maven'
2322
java-version: ${{ matrix.java }}
2423
distribution: 'temurin'
2524
- run: |

formats/protobuf/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<packaging>jar</packaging>
3333

3434
<properties>
35-
<protobuf.version>3.21.10</protobuf.version>
35+
<protobuf.version>4.31.1</protobuf.version>
3636
<module-name>io.cloudevents.formats.protobuf</module-name>
3737
</properties>
3838

@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>com.google.truth.extensions</groupId>
114114
<artifactId>truth-proto-extension</artifactId>
115-
<version>1.1.5</version>
115+
<version>1.4.4</version>
116116
<scope>test</scope>
117117
</dependency>
118118

pom.xml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@
105105
</site>
106106

107107
<snapshotRepository>
108-
<id>ossrh</id>
109-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
108+
<id>central</id>
109+
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
110110
</snapshotRepository>
111111

112112
<repository>
113-
<id>ossrh</id>
114-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
113+
<id>central</id>
114+
<url>https://central.sonatype.com</url>
115115
</repository>
116116
</distributionManagement>
117117

@@ -229,17 +229,15 @@
229229
<build>
230230
<plugins>
231231
<plugin>
232-
<groupId>org.sonatype.plugins</groupId>
233-
<artifactId>nexus-staging-maven-plugin</artifactId>
234-
<version>1.6.8</version>
232+
<groupId>org.sonatype.central</groupId>
233+
<artifactId>central-publishing-maven-plugin</artifactId>
234+
<version>0.8.0</version>
235235
<extensions>true</extensions>
236236
<configuration>
237-
<serverId>ossrh</serverId>
238-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
239-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
237+
<publishingServerId>central</publishingServerId>
238+
<autoPublish>true</autoPublish>
240239
</configuration>
241240
</plugin>
242-
243241
<plugin>
244242
<groupId>org.apache.maven.plugins</groupId>
245243
<artifactId>maven-gpg-plugin</artifactId>

0 commit comments

Comments
 (0)