I just research about Corda enterprise, I have downloaded file Corda enterprise3.zip when I extract this file, in this has a lot of files jar. Who can help me explaining how to run corda enterprise and use it. Thanks
1 Answers
The JAR files are the Corda Enterprise dependencies for your node.
If you want to develop CorDapps against Corda Enterprise, you need to set your project's build.gradle
file to depend on these dependencies. Do one of the following:
Option 1:
Place the Corda Enterprise binaries in your local Maven repository ( ~/.m2/repository
on osX, C:\Documents and Settings\{your-username}\.m2]
on Windows) and add mavenLocal()
to your build.gradle
file's repositories
block.
Option 2:
Publish the Corda Enterprise binaries to a personal Maven repository and add the following block to your build.gradle
file's repositories
block:
maven {
url 'https://repo.mycompany.com/maven2'
credentials {
username "<username>"
password "<password>"
}
}
Option 3:
Place the Corda Enterprise binaries somewhere on your local filesystem and add the following block to your build.gradle
file's repositories
block:
maven {
url 'file://D:/path/to/local/directory'
}