Closed cvgaviao closed 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.
javax.annotation
The quarkus 3.15.1 is using jakarta.annotation from:
jakarta.annotation
<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
@cvgaviao thanks for reporting this, well spotted! I've just merged this change into main, it will be included in the next release
Is your feature request related to RFC7807? Please describe. The current version of this project is using:
Unfortunately this is providing
javax.annotation
package.The quarkus 3.15.1 is using
jakarta.annotation
from:Describe the solution you'd like Use the same package being used by Quarkus