Filipe Sousa

Results 13 comments of Filipe Sousa

afaik oracle forbids names that contains java or javax and jakarta is the replacement. instead of javax.ws.rs:jsr311-api, javax.ws.rs:javax.ws.rs-api I use jakarta.ws.rs:jakarta.ws.rs-api. I want to avoid gwt compiling `javax.ws.rs.core.Response` and I...

I tried inserting the `@GwtIncompatible` in `UserResourceFactory` but the GWT compiler always complains about the missing `javax.ws.rs.core.Response`. It seems to work well for interfaces but not implementation. I found a...

I don't know the internals of domino-jackson, but google dagger is fully incremental. There is already an incremental gwt module that supports isolation: https://github.com/gwtproject/gwt-places/blob/master/processor/src/main/java/org/gwtproject/place/processor/PlaceHistoryMapperProcessor.java#L15 When the GWT migration is completed,...