I've finally got it to compile without trying to
      implement anything yet by:
      
    ```groovy
    dependencies {
        implementation("org.gwtproject:gwt-user:2.12.2")
    
        annotationProcessor('com.google.dagger:dagger-compiler:2.51')
        implementation "com.google.dagger:dagger-gwt:2.51"
    
        annotationProcessor 'org.dominokit:domino-rest-processor:1.0.2'
        implementation('org.dominokit:domino-rest-client:1.0.2') {
            exclude group: 'com.fasterxml.jackson.core', module:
    'jackson-annotations'
            exclude group: 'com.fasterxml.jackson.core', module:
    'jackson-core'
            exclude group: 'com.fasterxml.jackson.core', module:
    'jackson-databind'
        }
    ```
    
    Is this an elemental issue, do I need to pin that to particular
    version?
    
    -Mike