Skip to content

Commit

Permalink
add fixes
Browse files Browse the repository at this point in the history
Signed-off-by: gtebrean <[email protected]>
  • Loading branch information
gtebrean committed Aug 16, 2024
1 parent 3e335cc commit dca494d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
### Features

* Updated web3j to latest version 4.12.0 [#111](https://github.com/hyperledger/web3j-cli/pull/111)
* Add generateBoth flag [#114](https://github.com/hyperledger/web3j-cli/pull/114)

### BREAKING CHANGES

Expand Down
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ plugins {
id "de.undercouch.download" version "4.1.2"
id "de.marcphilipp.nexus-publish" version "0.4.0"
id 'io.codearte.nexus-staging' version '0.30.0'
// TODO decide if kept or not
// id "com.jfrog.bintray" version "1.8.4"
}

description 'Web3j command line tools'
Expand All @@ -33,6 +35,8 @@ ext {
semverVersion = '0.10.2'
commonsLangVersion = '3.14.0'
jansiVersion = '2.4.1'
kotlinPoetVersion = '1.18.1'
javaPoetVersion = '1.13.0'
}


Expand All @@ -57,7 +61,6 @@ apply {
}

repositories {
jcenter()
mavenCentral()
mavenLocal()
maven { url "https://dl.bintray.com/ethereum/maven/" }
Expand Down Expand Up @@ -90,6 +93,8 @@ dependencies {
"org.web3j:hosted-providers:$web3jVersion",
"io.epirus:epirus-web3j:$web3jEpirusVersion",
"info.picocli:picocli:$picocli",
"com.squareup:kotlinpoet:$kotlinPoetVersion",
"com.squareup:javapoet:$javaPoetVersion",
files('libs/smartcheck.jar'),
"com.google.code.gson:gson:$gsonVersion",
"org.apache.commons:commons-lang3:$commonsLangVersion",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

import java.io.File;

import org.web3j.tx.Contract;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;

import org.web3j.abi.datatypes.Address;
import org.web3j.codegen.Console;
import org.web3j.codegen.SolidityFunctionWrapperGenerator;
import org.web3j.console.Web3jVersionProvider;
import org.web3j.tx.Contract;

import static org.web3j.codegen.Console.exitError;
import static picocli.CommandLine.Help.Visibility.ALWAYS;
Expand Down

0 comments on commit dca494d

Please sign in to comment.