I spent some more time looking in to it, and the problem is that ActiveMQ automatically adds the BC provider if it finds it on the class path. Not only that, but it's hardcoded at position 2. This is a topic that's been discussed on the forums, and apparently Apache has said they won't change it nor add some config to change it. Bummer.
(The issue is related to prime number sizes - I think that Firebase requires a larger number than BC supports.)
In any case, I did try add an exclusion for the jars isomorphic-content-export, I rebuilt and tried to export pdfs, and it seems to work! so, problem solved I guess:
Code:
<exclusions> <exclusion> <groupId>bouncycastle</groupId> <artifactId>*</artifactId> </exclusion> </exclusions>
Leave a comment: