If the library was written using only the public API then it shouldn't be a problem. See https://accumulo.apache.org/api/ Accumulo follows SemVer to maintain compatibility of the public API between versions. There are a lot of changes between 1.10 and 2.0 but anything in the public API in 1.10 should still exist in 2.0, even if deprecated. If the library is calling internal methods or extending internal classes, then that is a different story. If it uses internals then I recommend refactoring to use the public API if possible.
On Mon, Oct 18, 2021 at 3:38 PM Vincent Russell <vincent.russ...@gmail.com> wrote: > Hello, > > I am interested in using an accumulo query and storage library that was > written against accumulo version 1.10 and I am interested in using it with > accumulo 2.0. > > Is there a shim that exists that would allow the library to be used for > both versions that could be activated at compile time via a maven profile > or something? > > Thanks, > Vincent >