I need to interact with a repository with a complex layout and I would like not to import the whole thing into my main java project, but instead simply rely on the truffle json output file format.
Web3j supports the generation of java wrapper from such file via the command
$ web3j truffle generate /path/to/<truffle-smart-contract-output>.json -o /path/to/src/main/java -p com.your.organisation.name
Does the task GenerateContractWrappers support such scenario? Is it possible to configure it as such?
Thanks!
I need to interact with a repository with a complex layout and I would like not to import the whole thing into my main java project, but instead simply rely on the truffle json output file format.
Web3j supports the generation of java wrapper from such file via the command
$ web3j truffle generate /path/to/<truffle-smart-contract-output>.json -o /path/to/src/main/java -p com.your.organisation.nameDoes the task
GenerateContractWrapperssupport such scenario? Is it possible to configure it as such?Thanks!