-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure abstract jakarta.ws.rs.core.Application is ignored
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
...nimum-reactive/src/main/java/io/quarkus/ts/http/minimum/reactive/AbstractApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
10 changes: 10 additions & 0 deletions
10
http/http-minimum/src/main/java/io/quarkus/ts/http/minimum/AbstractApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |