You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The deployNodes task is need need of quite a number of dependencies for its execution (Guava, Bouncycastle). In a larger multi-project Gradle project I run into problems because of versioning issues of the dependencies. I did not analyze the issue in detail. I guess some of those dependencies come from the Gradle classpath rather than the application compile classpath. It would be great if the plugin runs more or less fully isolated. Some typical patterns are using a custom classloader isolated from the Gradle classloader or using https://github.com/project-aries/docker-java-shaded.
I managed to get it working by adding all the corda dependencies onto the Gradle classpath, but that is something I really do not want to do:
The deployNodes task is need need of quite a number of dependencies for its execution (Guava, Bouncycastle). In a larger multi-project Gradle project I run into problems because of versioning issues of the dependencies. I did not analyze the issue in detail. I guess some of those dependencies come from the Gradle classpath rather than the application compile classpath. It would be great if the plugin runs more or less fully isolated. Some typical patterns are using a custom classloader isolated from the Gradle classloader or using https://github.com/project-aries/docker-java-shaded.
I managed to get it working by adding all the corda dependencies onto the Gradle classpath, but that is something I really do not want to do:
The text was updated successfully, but these errors were encountered: