You have databind twice there, I believe you will be needing annotations, core, and databind. I often use a particular service in my PaxExam tests, and its feature provisions those three Jackson artifacts, since the service uses Jackson internally. Skip gson..
You can also provision using mavenBundle()-API in Pax Exam - Eric L On Sat, Jun 3, 2023 at 5:03 PM Steinar Bang <[email protected]> wrote: > >>>>> Steinar Bang <[email protected]>: > > [snip!] > > I have added the following compile scope dependencies to the integration > > test project itself. > > > I have also added these dependencies to the project containing the test > > feature loaded by the integration test, causing the jackson bundles to > > be added to that feature. > > Forgot to add the dependencies, but here they are (I've added the same > compile scope depdencies in both places): > <dependencies> > <dependency> > <groupId>com.fasterxml.jackson.core</groupId> > <artifactId>jackson-core</artifactId> > <version>2.15.2</version> > </dependency> > <dependency> > <groupId>com.fasterxml.jackson.core</groupId> > <artifactId>jackson-databind</artifactId> > <version>2.15.2</version> > </dependency> > <dependency> > <groupId>com.fasterxml.jackson.core</groupId> > <artifactId>jackson-databind</artifactId> > <version>2.15.2</version> > </dependency> > >
