dalli98

Results 7 comments of dalli98

@mcmar47 @cmxiv @mchip22 @savvyben I solved this issue by using the following dependency for xeroapi in pom.xml ``` com.github.xeroapi xero-java 4.29.1 org.glassfish.jersey.core jersey-client org.glassfish.jersey.media jersey-media-multipart org.glassfish.jersey.media jersey-media-json-jackson org.glassfish.jersey.core jersey-common org.glassfish.jersey.ext...

It looks like xeroapi wants to use jersey 2.27. However, the property is overridden and it uses a newer version which is not compatible

I did find a better way to override the jersey version in the dependencyManagement within pom.xml: ``` org.glassfish.jersey jersey-bom 2.27 pom import ```

@juTru I solved this issue by using the following dependency in pom.xml ``` com.github.xeroapi xero-java 4.29.1 org.glassfish.jersey.core jersey-client org.glassfish.jersey.media jersey-media-multipart org.glassfish.jersey.media jersey-media-json-jackson org.glassfish.jersey.core jersey-common org.glassfish.jersey.ext jersey-entity-filtering org.glassfish.jersey.core jersey-client 2.27 org.glassfish.jersey.media...

It looks like xeroapi wants to use jersey 2.27. However, the property is overridden and it uses a newer version which is not compatible

@oss-linux-etc I solved this issue by using the following dependency in pom.xml ``` com.github.xeroapi xero-java 4.29.1 org.glassfish.jersey.core jersey-client org.glassfish.jersey.media jersey-media-multipart org.glassfish.jersey.media jersey-media-json-jackson org.glassfish.jersey.core jersey-common org.glassfish.jersey.ext jersey-entity-filtering org.glassfish.jersey.core jersey-client 2.27 org.glassfish.jersey.media...

It looks like xeroapi wants to use jersey 2.27. However, the property is overridden and it uses a newer version which is not compatible