Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move javax.annotation.* to jakarta.annotation.* #436

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
<zalando-problem.version>0.27.1</zalando-problem.version>
<assertj.version>3.26.3</assertj.version>
<jmh.version>1.37</jmh.version>
<jsr305.version>3.0.2</jsr305.version>
<archunit.version>1.3.0</archunit.version>

<!-- maven plugins -->
Expand Down
5 changes: 2 additions & 3 deletions runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@
<artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@
import java.util.stream.Collectors;
import java.util.stream.Stream;

import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import jakarta.annotation.Nullable;

import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;

/**
* Representation of RFC7807 Problem schema.
*/
@Immutable
public class HttpProblem extends RuntimeException {

public static final MediaType MEDIA_TYPE = new MediaType("application", "problem+json");
Expand Down