Skip to content

Commit

Permalink
Merge pull request #79 from web3j/release_4.11.1
Browse files Browse the repository at this point in the history
release 4.11.1
  • Loading branch information
gtebrean committed Mar 15, 2024
2 parents 68adea8 + 9ac5cb9 commit 0c743f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.web3j
version=4.11.0
version=4.11.1
org.gradle.caching=true
org.gradle.parallel=true
solidityPluginVersion=0.4.0
Expand Down
10 changes: 8 additions & 2 deletions src/test/java/org/web3j/gradle/plugin/Web3jPluginTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ public void generateContractWrappersExcluding() throws IOException {
+ " mavenCentral()\n"
+ " maven {\n"
+ " url 'https://oss.sonatype.org/content/repositories/snapshots'\n"
+ " }"
+ " }\n"
+ " maven {\n"
+ " url 'https://artifacts.consensys.net/public/maven/maven/'\n"
+ " }\n"
+ "}\n";

Files.write(buildFile.toPath(), buildFileContent.getBytes());
Expand Down Expand Up @@ -130,7 +133,10 @@ public void generateContractWrappersIncluding() throws IOException {
+ " mavenCentral()\n"
+ " maven {\n"
+ " url 'https://oss.sonatype.org/content/repositories/snapshots'\n"
+ " }"
+ " }\n"
+ " maven {\n"
+ " url 'https://artifacts.consensys.net/public/maven/maven/'\n"
+ " }\n"
+ "}\n";

Files.write(buildFile.toPath(), buildFileContent.getBytes());
Expand Down

0 comments on commit 0c743f9

Please sign in to comment.