Questions tagged [conclave]

Questions related to the Conclave Platform and issues while building conclave apps. Conclave is a toolkit for building enclaves, small pieces of software that are protected from attack by the owner of the computer on which they run. It is ideally suited to solving multi-party collaboration and privacy problems. Visit http://docs.conclave.net/ for the official documentation.

4 questions
1
vote
1 answer

Conclave does not start in release mode after passing -PenclaveMode=release

I am trying to start Conclave in release mode, followed instructions as below : // Firstly, built the signing material: ./gradlew prepareForSigning -PenclaveMode=release // Generated a signature from the signing material. The password for the…
0
votes
1 answer

Could not determine the dependencies of task ':enclave:compileJava'

Could not resolve all task dependencies for configuration ':enclave:compileClasspath'. Could not resolve project :common. Required by: project :enclave > No matching variant of project :common was found. The consumer was configured to…
Ganesh
  • 1
0
votes
1 answer

Could not determine the dependencies of task ':client:shadowJar'

FAILURE: Build failed with an exception. What went wrong: Could not determine the dependencies of task ':client:shadowJar'. Could not resolve all dependencies for configuration ':client:runtimeClasspath'. Could not find…
Ganesh
  • 1
0
votes
0 answers

Usage of Docker --device flag inside a docker file

I am trying to load sgx driver inside a docker container, there is an option provided wherein we can provide this using --device flag , by executing docker run --device /dev/sgx/enclave --device /dev/sgx/provision , but we want to add this inside…