Skip to content

Commit

Permalink
Ensure abstract jakarta.ws.rs.core.Application is ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
rsvoboda committed Sep 2, 2024
1 parent 01635f7 commit fcb8894
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package io.quarkus.ts.http.minimum.reactive;

import jakarta.ws.rs.ApplicationPath;
import jakarta.ws.rs.core.Application;

@ApplicationPath("/rest")
public abstract class AbstractApplication extends Application {
// Abstract jakarta.ws.rs.core.Application classes should be ignored
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package io.quarkus.ts.http.minimum;

//import jakarta.ws.rs.ApplicationPath;
import jakarta.ws.rs.core.Application;

// TODO uncomment when https://github.com/quarkusio/quarkus/issues/42963 is fixed
//@ApplicationPath("/rest")
public abstract class AbstractApplication extends Application {
// Abstract jakarta.ws.rs.core.Application classes should be ignored
}

0 comments on commit fcb8894

Please sign in to comment.