Skip to content

Commit

Permalink
Merge pull request #116 from hyperledger-web3j/fix_organization
Browse files Browse the repository at this point in the history
fix org
  • Loading branch information
gtebrean authored Dec 17, 2024
2 parents 627a684 + 28ab972 commit 7a9bd61
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

### BREAKING CHANGES

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

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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ apply {
'junit'
].each { buildScript ->
download {
src "https://raw.githubusercontent.com/hyperledger/web3j-build-tools/main/gradle/$buildScript/build.gradle"
src "https://raw.githubusercontent.com/hyperledger-web3j/web3j-build-tools/main/gradle/$buildScript/build.gradle"
dest "$rootDir/gradle/$buildScript/build.gradle"
overwrite false
quiet true
Expand Down
6 changes: 3 additions & 3 deletions gradle/publish/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ publishing {
slug = project.rootProjectOverride
}

url = "https://github.com/hyperledger/$slug"
connection = "scm:https://github.com/hyperledger/${slug}.git"
developerConnection = "scm:git://github.com/hyperledger/${slug}.git"
url = "https://github.com/hyperledger-web3j/$slug"
connection = "scm:https://github.com/hyperledger-web3j/${slug}.git"
developerConnection = "scm:git://github.com/hyperledger-web3j/${slug}.git"
}

developers {
Expand Down
4 changes: 2 additions & 2 deletions gradle/repositories/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven {
url "https://hyperledger.jfrog.io/artifactory/besu-maven/"
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger/besu/plugin-api/21.7.2/"
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger/besu/internal/besu/21.7.2/"
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger-web3j/besu/plugin-api/21.7.2/"
artifactUrls "https://hyperledger.jfrog.io/artifactory/besu-maven/org/hyperledger-web3j/besu/internal/besu/21.7.2/"
}
maven {
url "https://hyperledger.jfrog.io/artifactory/besu-binaries/"
Expand Down
4 changes: 2 additions & 2 deletions gradle/spotless/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ apply plugin: 'com.diffplug.spotless'
apply plugin: "de.undercouch.download"

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


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

0 comments on commit 7a9bd61

Please sign in to comment.