Matt Brown
Matt Brown
Correct that setting `useIncrementalCompilation` to false as a workaround works (at least with 1.8.0_40), and I've only seen this when compiling with JDK8 (i.e. when JAVA_HOME is set to 1.8.x).
Regarding the javac example above - Maven sets the `-sourcepath` to be both `src/main/java` and `target/generated-sources/annotations`: ``` $ mvn -X -Dmaven.compiler.verbose=true compile ... [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-compiler-plugin:3.2:compile' with basic configurator...
From the [maven-compiler-plugin changelog for 3.2](http://mail-archives.apache.org/mod_mbox/maven-announce/201410.mbox/%3C543C42F9.9010709%40apache.org%3E), sounds like maybe [MCOMPILER-159](https://jira.codehaus.org/browse/MCOMPILER-159) could be related?
in case anyone else runs into this, I found myself wanting to use `@UseRowReducer` with `@KeyColumn` in a `@SqlQuery`-annotated method returning a Guava `ListMultimap`. I was able to get the...
When building a ManagedChannel to talk to some grpc server, is there a way I can set the details of the load balancing policy, health check config, etc., when the...
@ejona86 thanks, `defaultServiceConfig()` is exactly what I needed! 👍 Any thoughts on providing a typed API to avoid having to configure it with JSON-as-Java-objects and to avoid breaking in case...
I wonder if there is a bit of confirmation bias going on in noticing of the `SERVFAIL` responses with the new library - in that there may have been sporadic...
One design issue with this, at least as of 52b65f8, is that the io.kubernetes.client.util.credentials.Authentication interface is only asked to provide authentication for an ApiClient at construction time - when ClientBuilder...
@hmeerlo we have an application that has to connect to the API of several GKE clusters. We have a scheduled thread that periodically executes something like the following: ```java String...
@haugene we use [`GoogleCredentials.getApplicationDefault()`](https://cloud.google.com/docs/authentication/production#auth-cloud-compute-engine-java) to get a token for the service account of the GCE instance where this code is running. The code calls `credentials.refreshIfExpired()` on each of the loops...