Andrew Guibert

Results 151 comments of Andrew Guibert
trafficstars

Also, if things are mixed up the other way around (Mojarra API w/ other JSF impl) we get the following error because the `javax.faces.FactoryFinderInstance` needs to import the `com.sun.faces.spi.InjectionProvider` class....

I don't understand how the JSF API could be excluded at runtime, then where would `javax.faces.*` classes be loaded from? If I am truly misunderstanding this port, then the rest...

Thanks for clarifying Arjan! Where would someone get the full mojarra jar? I've been getting the individual pieces from maven here: https://mvnrepository.com/artifact/com.sun.faces/jsf-api/2.2.14 https://mvnrepository.com/artifact/com.sun.faces/jsf-impl/2.2.14 Side note: In case you are familiar...

I ran into this issue as well, but it turns out there is both a `dockerRun` task and a `dockerRun` extension. When you try to do `dockerRun.dependsOn 'anotherTask'` in your...

This works in the basic sense, but we will have to wait for reusable container w/ Network support in order to safely utilize this feature.

It may be good to use a Pebble container for generating certificats using the ACME protocol for testing: https://github.com/letsencrypt/pebble

hi @a-simoes, thanks for raising this idea. Are the headers you need to add static/final strings? Keep in mind that annotation values must be constants. If you generate the header...

hi @sultansoy, thanks for raising this issue. According to RFC 7519 the typ attribute is optional: https://tools.ietf.org/html/rfc7519#section-5.1 It's easy enough to add though. Is this causing an issue with an...

Yes currently dependsOn is not usable with parallel start. What can be done instead for now is to use a `SharedContainerConfiguration` and override the `start()` method to start containers in...

ah ok, the problem here is that `getJdbcUrl()` calls `getFirstMappedPort()` which requires the container to be running. At the time when the `public static MicroProfileApplication app` field is initialized, no...