Skip to content

Commit 7a9bd61

Browse files
authored
Merge pull request #116 from hyperledger-web3j/fix_organization
fix org
2 parents 627a684 + 28ab972 commit 7a9bd61

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1515

1616
### BREAKING CHANGES
1717

18-
*
18+
* fix organization name [#116](https://github.com/hyperledger-web3j/web3j-evm/pull/116)
1919

2020
# [4.12.2](https://github.com/hyperledger/web3j-evm/releases/tag/v4.12.2) (2024-09-18)
2121

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ apply {
3636
'junit'
3737
].each { buildScript ->
3838
download {
39-
src "https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/$buildScript/build.gradle"
39+
src "https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/$buildScript/build.gradle"
4040
dest "$rootDir/gradle/$buildScript/build.gradle"
4141
overwrite false
4242
quiet true

gradle/publish/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ publishing {
4848
slug = project.rootProjectOverride
4949
}
5050

51-
url = "https://github.com/hyperledger/$slug"
52-
connection = "scm:https://github.com/hyperledger/${slug}.git"
53-
developerConnection = "scm:git://github.com/hyperledger/${slug}.git"
51+
url = "https://github.com/hyperledger-web3j/$slug"
52+
connection = "scm:https://github.com/hyperledger-web3j/${slug}.git"
53+
developerConnection = "scm:git://github.com/hyperledger-web3j/${slug}.git"
5454
}
5555

5656
developers {

gradle/repositories/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ repositories {
55
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
66
maven {
77
url "https://hyperledger.jfrog.io/artifactory/besu-maven/"
8-
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger/besu/plugin-api/21.7.2/"
9-
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger/besu/internal/besu/21.7.2/"
8+
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger-web3j/besu/plugin-api/21.7.2/"
9+
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger-web3j/besu/internal/besu/21.7.2/"
1010
}
1111
maven {
1212
url "https://hyperledger.jfrog.io/artifactory/besu-binaries/"

gradle/spotless/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ apply plugin: 'com.diffplug.spotless'
33
apply plugin: "de.undercouch.download"
44

55
task downloadJavaLicense(type: Download) {
6-
src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/java.license'
6+
src 'https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/spotless/java.license'
77
dest new File("$rootDir/gradle/spotless",'java.license')
88
quiet true
99
onlyIfModified true
1010
}
1111

1212

1313
task downloadFormatterProperties(type: Download) {
14-
src 'https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/spotless/formatter.properties'
14+
src 'https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/spotless/formatter.properties'
1515
dest new File("$rootDir/gradle/spotless",'formatter.properties')
1616
quiet true
1717
onlyIfModified true

0 commit comments

Comments
 (0)