Skip to content

Commit 7c721cb

Browse files
committed
bump snapshot 5.0.2
Signed-off-by: gtebrean <99179176+gtebrean@users.noreply.github.com>
1 parent 54abc71 commit 7c721cb

File tree

5 files changed

+11
-17
lines changed

5 files changed

+11
-17
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@ jobs:
5050
echo "This workflow is for releases only. Version '${{ steps.release_name.outputs.version }}' ends with -SNAPSHOT." >&2
5151
exit 1
5252
53-
5453
# Publish artifacts to local staging repo (your Gradle config already defines it)
55-
# - name: Stage artifacts locally
56-
# run: ./gradlew -Pversion=${{ steps.release_name.outputs.version }} publishMavenPublicationToLocalStagingRepository --stacktrace
57-
#
58-
# # Deploy to Central Portal via JReleaser (Publisher API)
59-
# - name: Deploy to Maven Central (Portal)
60-
# run: ./gradlew -Pversion=${{ steps.release_name.outputs.version }} jreleaserDeploy --stacktrace
54+
- name: Stage artifacts locally
55+
run: ./gradlew -Pversion=${{ steps.release_name.outputs.version }} publishMavenPublicationToLocalStagingRepository --stacktrace
56+
57+
# Deploy to Central Portal via JReleaser (Publisher API)
58+
- name: Deploy to Maven Central (Portal)
59+
run: ./gradlew -Pversion=${{ steps.release_name.outputs.version }} jreleaserDeploy --stacktrace
6160

6261
javadocs-release:
6362
needs: release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Gradle
141141
Java:
142142

143143
```groovy
144-
implementation ('org.web3j:core:4.14.0')
144+
implementation ('org.web3j:core:5.0.1')
145145
```
146146

147147
Android:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ext {
3333
// test dependencies
3434
equalsverifierVersion = '3.16.1'
3535
junitVersion = '5.5.2'
36-
web3jUnitVersion = '4.12.3'
36+
web3jUnitVersion = '4.14.0'
3737
junitBenchmarkVersion = '0.7.2'
3838
logbackVersion = '1.5.6'
3939
mockitoJunitVersion = '3.1.0'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=org.web3j
2-
version=5.0.1
2+
version=5.0.2-SNAPSHOT

gradle/repositories/build.gradle

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@ repositories {
22
gradlePluginPortal()
33
mavenCentral()
44
maven {
5-
url = uri("https://plugins.gradle.org/m2/")
5+
url 'https://plugins.gradle.org/m2/'
66
}
7-
maven {
8-
name = 'ossrh-staging-api'
9-
url = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
10-
}
11-
maven { url 'https://central.sonatype.com/api/v1/publish/releases/' }
12-
maven { url 'https://central.sonatype.com/api/v1/publish/snapshots/' }
7+
maven { url 'https://central.sonatype.com/repository/maven-snapshots/' }
138
}

0 commit comments

Comments
 (0)