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 authored and fedinskiy committed Sep 4, 2024
1 parent fca904f commit 37be1a9
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 37be1a9

Please sign in to comment.