Gunnar Morling
Gunnar Morling
Hey @osheroff, Gunnar here from the Debezium team. I just learned about this fork of Shyiko's connector, which he recommends instead of his abandoned one. Are you planning to maintain...
I suppose simplest would be to actually do call bundle update and bundle install in the Dockerfile of the builder image, so that the actual build itself should be quicker....
Hi, I am trying to understand the ordering guarantees of externalized events, in particular whether it is guaranteed that two events originating from two concurrent requests are sent to Kafka...
I'm having these classes: ```java package com.a; public class A { public void foo() {} } ``` ```java package com.a; public class AFactory { public static A make() { return...
When looking for called methods declared by some type (`cu.findMethodCalls( "com.example.MyType *(..)" )`) it should be possible to match invocations of methods declared by a super-type of `MyType` (and not...
I've a specific usage of Java 8 type annotations (JSR 308) which makes the parser fail. To reproduce, parse these classes: ```java package com; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy;...
The [wiki](https://github.com/Netflix-Skunkworks/rewrite/wiki/Changing-Method-Invocations) has this example: ```java Tr.CompilationUnit cu = parser.parse(asList(a, b)).get(1); String diff = cu.refactor() .changeMethodTarget(cu.findMethodCalls("A1 foo()"), "a2") .diff(); ``` `changeMethodTarget()` expects a `NamedVar` instead of `String` as second parameter,...
// CC @aalmiray
https://github.com/Ekryd/sortpom