quarkiverse / quarkus-resteasy-problem

Unified error responses for Quarkus REST APIs via Problem Details for HTTP APIs (RFC9457 & RFC7807)
https://docs.quarkiverse.io/quarkus-resteasy-problem/dev
Apache License 2.0
69 stars 12 forks source link

move javax.annotation.* to jakarta.annotation.* #435

Closed cvgaviao closed 1 month ago

cvgaviao commented 1 month ago

Is your feature request related to RFC7807? Please describe. The current version of this project is using:

<dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
            <version>${jsr305.version}</version>
        </dependency>

Unfortunately this is providing javax.annotation package.

The quarkus 3.15.1 is using jakarta.annotation from:

 <dependency>
            <groupId>jakarta.annotation</groupId>
            <artifactId>jakarta.annotation-api</artifactId>
        </dependency>

Describe the solution you'd like Use the same package being used by Quarkus

lwitkowski commented 1 month ago

@cvgaviao thanks for reporting this, well spotted! I've just merged this change into main, it will be included in the next release