kumuluz / kumuluzee

Lightweight open-source framework for developing microservices using standard Java EE technologies and migrating Java EE to cloud-native architecture.
https://ee.kumuluz.com
MIT License
291 stars 71 forks source link

Dependencys Problem #144

Closed ArtHoffmann closed 5 years ago

ArtHoffmann commented 5 years ago

Hello, we've discovered a bug in the dependencies. The error occurs when you include Swagger. To fix the problem we had to remove the following dependency:

 <exclusion>
                    <groupId>org.glassfish.jersey.containers</groupId>
                    <artifactId>jersey-container-servlet-core</artifactId>
 </exclusion>

The problem is caused by the 2 different versions of jersey

image

Thanks!

zvonegit commented 5 years ago

Hello @ArtHoffmann,

Can you try with kumuluzee-swagger version 1.2.1?

ArtHoffmann commented 5 years ago

Hello, i'm already using version 1.2.1

<kumuluzee-swagger.version>1.2.1</kumuluzee-swagger.version>

zvonegit commented 5 years ago

Hi,

Kumuluzee-swagger v1.2.2 was released with the fix for your issue. Please check.

Thank you!

ArtHoffmann commented 5 years ago

It works.

Thank you!