gwtproject / gwt

GWT Open Source Project

Home Page:http://www.gwtproject.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GWT compile errors when trying to build with GWT 2.10 or 2.11

dgeiselmanMOO opened this issue · comments

GWT version:2.10 or 2.11
Browser (with version):Chrome
Operating System:Windows 10


Description

I have to upgrade to latest version of Spring which requires upgrading to JDK 17. I started working on moving to GWT 2.10 a while back but was having an error message about gin inject. I just kept it at 2.9 at the time and now I need to upgrade. GWT 2.10 and 2.11 give me this error when trying to run GWT Compile in Gradle 6.9.4

Computing all possible rebind results for 'com.mutualofomaha.nbs.health.ui.client.AppGinjector'
Rebinding com.mutualofomaha.nbs.health.ui.client.AppGinjector
Invoking generator com.google.gwt.inject.rebind.GinjectorGenerator
[WARN] Class jdk.internal.reflect.ConstructorAccessorImpl is used in Gin, but not available in GWT client code.
[ERROR] Errors in 'com/google/gwt/user/client/DOM.java'
[ERROR] Line 65: Rebind result 'com.google.gwt.user.client.impl.DOMImpl' cannot be abstract
[ERROR] Errors in 'com/google/gwt/dom/client/DOMImpl.java'
[ERROR] Line 23: Rebind result 'com.google.gwt.dom.client.DOMImpl' cannot be abstract
[ERROR] Errors in 'com/google/gwt/user/cellview/client/CellBasedWidgetImpl.java'
[ERROR] Line 50: Rebind result 'com.google.gwt.user.cellview.client.CellBasedWidgetImpl' cannot be abstract

The version of gin I have is com.google.gwt.inject:gin:2.1.2. Is there something I need to change to fix this error?

Steps to reproduce

Change version from 2.9 to 2.10 or 2.11 leaving implementation 'com.google.gwt.inject:gin:2.1.2' the same

Known workarounds
Links to further discussions

I don't think there is enough information here to know what is happening yet - those errors look like they are caused by previous errors (in DomImpl.java, and possibly CellBasedWidgetImpl.java). This may not be related to gin - but gin is unmaintained, and hasn't gotten updates since about GWT 2.6.

Can you share the full log? It may be that you should enable -strict to fail on the first error instead of the last one - note that this is generally a good idea to have enabled, as it will avoid problems that can negatively impact dev mode performance. If you can't enable strict (test with GWT 2.9 first), setting logLevel to TRACE should also provide the same level of detail.

Is there something in this I can put for it to get more logging

gwt {
gwtVersion = "${gwtVersionDefault}"
modules 'com.mutualofomaha.nbs.health.ui.HealthUnderwritingDashboard'

minHeapSize = "512M";
maxHeapSize = "2048M";
extraJvmArgs = ['-Dgwt.jjs.permutationWorkerFactory=com.google.gwt.dev.ThreadedPermutationWorkerFactory',
                '-Dgwt.jjs.maxThreads=4']

}

Task :compileGwt
Compiling module com.mutualofomaha.nbs.health.ui.HealthUnderwritingDashboard
Computing all possible rebind results for 'com.google.gwt.useragent.client.UserAgentAsserter'
Rebinding com.google.gwt.useragent.client.UserAgentAsserter
Checking rule
[WARN] Detected warnings related to 'com.google.gwt.editor.client.SimpleBeanEditorDriver'. Are validation-api-.jar and validation-api--sources.jar on the classpath?
[WARN] Unknown type 'com.google.gwt.editor.client.SimpleBeanEditorDriver' specified in deferred binding rule
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$2 (file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/com.google.inject/guice/3.0/9d84f15fe35e2c716a02979fb62f50a29f38aefa/guice-3.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$2
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
Computing all possible rebind results for 'com.mutualofomaha.nbs.health.ui.client.AppGinjector'
Rebinding com.mutualofomaha.nbs.health.ui.client.AppGinjector
Invoking generator com.google.gwt.inject.rebind.GinjectorGenerator
[WARN] Class jdk.internal.reflect.ConstructorAccessorImpl is used in Gin, but not available in GWT client code.
[ERROR] Errors in 'com/google/gwt/user/client/DOM.java'
[ERROR] Line 65: Rebind result 'com.google.gwt.user.client.impl.DOMImpl' cannot be abstract
[ERROR] Errors in 'com/google/gwt/dom/client/DOMImpl.java'
[ERROR] Line 23: Rebind result 'com.google.gwt.dom.client.DOMImpl' cannot be abstract
[ERROR] Errors in 'com/google/gwt/user/cellview/client/CellBasedWidgetImpl.java'
[ERROR] Line 50: Rebind result 'com.google.gwt.user.cellview.client.CellBasedWidgetImpl' cannot be abstract

Task :compileGwt FAILED

Found what needed set

Task :compileGwt
Compiling module com.mutualofomaha.nbs.health.ui.HealthUnderwritingDashboard
Tracing compile failure path for type 'com.google.gwt.validation.client.DefaultTraversableResolver'
[ERROR] Errors in 'com/google/gwt/validation/client/DefaultTraversableResolver.java'
[ERROR] Line 39: Path cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.Path cannot be resolved
[ERROR] Line 31: Node cannot be resolved to a type
[ERROR] Line 27: TraversableResolver cannot be resolved to a type
[ERROR] Line 38: Node cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Path cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.TraversableResolver cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfChar'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfChar.java'
[ERROR] Line 28: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfChar is inconsistent
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForMap'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForMap.java'
[ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The hierarchy of the type SizeValidatorForMap is inconsistent
[ERROR] Line 30: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'javax.validation.Configuration'
[ERROR] Errors in 'javax/validation/super/javax/validation/Configuration.java'
[ERROR] Line 202: ValidatorFactory cannot be resolved to a type
[ERROR] Line 93: TraversableResolver cannot be resolved to a type
[ERROR] Line 182: TraversableResolver cannot be resolved to a type
[ERROR] Line 194: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 105: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GroupValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GroupValidator.java'
[ERROR] Line 36: ConstraintViolation cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java'
[ERROR] Line 25: The import javax.validation.metadata cannot be resolved
[ERROR] Line 116: TraversableResolver cannot be resolved to a type
[ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 70: TraversableResolver cannot be resolved to a type
[ERROR] Line 55: BeanDescriptor cannot be resolved to a type
[ERROR] Line 103: TraversableResolver cannot be resolved to a type
[ERROR] Line 56: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 68: BeanDescriptor cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 90: BeanDescriptor cannot be resolved to a type
[ERROR] Line 157: TraversableResolver cannot be resolved to a type
[ERROR] Line 43: TraversableResolver cannot be resolved to a type
[ERROR] Line 129: BeanDescriptor cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 116: BeanDescriptor cannot be resolved to a type
[ERROR] Line 156: TraversableResolver cannot be resolved to a type
[ERROR] Line 103: BeanDescriptor cannot be resolved to a type
[ERROR] Line 129: TraversableResolver cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.metadata cannot be resolved
[ERROR] Line 38: BeanDescriptor cannot be resolved to a type
[ERROR] Line 63: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/Group.java'
[ERROR] Line 84: Default cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java'
[ERROR] Line 127: Node cannot be resolved to a type
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 44: Node cannot be resolved to a type
[ERROR] Line 46: Node cannot be resolved to a type
[ERROR] Line 39: Node cannot be resolved to a type
[ERROR] Line 138: Node cannot be resolved to a type
[ERROR] Line 112: Node cannot be resolved to a type
[ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node
[ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 108: Node cannot be resolved to a type
[ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node
[ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 132: Node cannot be resolved to a type
[ERROR] Line 49: Node cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Node cannot be resolved to a type
[ERROR] Line 108: List cannot be resolved to a type
[ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 111: Node cannot be resolved to a type
[ERROR] Line 44: List cannot be resolved to a type
[ERROR] Line 148: Node cannot be resolved to a type
[ERROR] Line 50: Node cannot be resolved to a type
[ERROR] Line 116: Node cannot be resolved to a type
[ERROR] Line 131: Node cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java'
[ERROR] Line 79: ValidationException cannot be resolved to a type
[ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 108: TraversableResolver cannot be resolved to a type
[ERROR] Line 42: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 66: TraversableResolver cannot be resolved to a type
[ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.Validator cannot be resolved
[ERROR] Line 77: ConstraintViolation cannot be resolved to a type
[ERROR] Line 69: TraversableResolver cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method
[ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 74: ValidationException cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 36: Validator cannot be resolved to a type
[ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java'
[ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 29: The import javax.validation.metadata cannot be resolved
[ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 142: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 222: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 104: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 221: ConstraintViolation cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 185: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java'
[ERROR] Line 30: Path cannot be resolved to a type
[ERROR] Line 41: Path cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.Path cannot be resolved
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 40: Path cannot be resolved to a type
[ERROR] Line 49: Path cannot be resolved to a type
[ERROR] Line 32: Path cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.FutureValidatorForDate'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/FutureValidatorForDate.java'
[ERROR] Line 21: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 32: Future cannot be resolved to a type
[ERROR] Line 29: Future cannot be resolved to a type
[ERROR] Line 36: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 29: ConstraintValidator cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.constraints.Future cannot be resolved
[ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved
Tracing compile failure path for type 'com.google.gwt.editor.client.impl.AbstractSimpleBeanEditorDriver'
[ERROR] Errors in 'com/google/gwt/editor/client/impl/AbstractSimpleBeanEditorDriver.java'
[ERROR] Line 28: Name clash: The method setConstraintViolations(Iterable<ConstraintViolation>) of type BaseEditorDriver has the same erasure as setConstraintViolations(Iterable>) of type EditorDriver but does not override it
[ERROR] Errors in 'com/google/gwt/editor/client/impl/BaseEditorDriver.java'
[ERROR] Line 31: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 66: ConstraintViolation cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/editor/client/EditorDriver.java'
[ERROR] Line 20: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 97: ConstraintViolation cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/editor/client/impl/SimpleViolation.java'
[ERROR] Line 44: ConstraintViolation cannot be resolved to a type
[ERROR] Line 97: ConstraintViolation cannot be resolved to a type
[ERROR] Line 73: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: ConstraintViolation cannot be resolved to a type
[ERROR] Line 72: ConstraintViolation cannot be resolved to a type
[ERROR] Line 43: ConstraintViolation cannot be resolved to a type
[ERROR] Line 83: ConstraintViolation cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 40: ConstraintViolation cannot be resolved to a type
[ERROR] Line 49: ConstraintViolation cannot be resolved to a type
[ERROR] Line 78: ConstraintViolation cannot be resolved to a type
[ERROR] Line 92: ConstraintViolation cannot be resolved to a type
[ERROR] Line 102: ConstraintViolation cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.metadata.MessageAndPath'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java'
[ERROR] Line 30: Path cannot be resolved to a type
[ERROR] Line 41: Path cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.Path cannot be resolved
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 40: Path cannot be resolved to a type
[ERROR] Line 49: Path cannot be resolved to a type
[ERROR] Line 32: Path cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.Validation'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/Validation.java'
[ERROR] Line 108: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 128: ValidatorFactory cannot be resolved to a type
[ERROR] Line 90: The method getDefaultValidationProviderResolver() of type Validation.GenericGWTBootstrapImpl must override or implement a supertype method
[ERROR] Line 90: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 56: BootstrapState cannot be resolved to a type
[ERROR] Line 62: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 82: ValidationException cannot be resolved to a type
[ERROR] Line 99: The method getDefaultValidationProviderResolver() from the type Validation.GenericGWTBootstrapImpl refers to the missing type ValidationProviderResolver
[ERROR] Line 24: The import javax.validation.ValidationProviderResolver cannot be resolved
[ERROR] Line 98: The method getValidationProviderResolver() of type Validation.GenericGWTBootstrapImpl must override or implement a supertype method
[ERROR] Line 64: ValidationProvider cannot be resolved to a type
[ERROR] Line 94: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 158: ProviderSpecificBootstrap cannot be resolved to a type
[ERROR] Line 108: GenericBootstrap cannot be resolved to a type
[ERROR] Line 68: ValidationException cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 55: GenericBootstrap cannot be resolved to a type
[ERROR] Line 62: The method getDefaultValidationProviderResolver() from the type Validation.GenericGWTBootstrapImpl refers to the missing type ValidationProviderResolver
[ERROR] Line 25: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Line 61: The method configure() of type Validation.GenericGWTBootstrapImpl must override or implement a supertype method
[ERROR] Line 129: The method byDefaultProvider() from the type Validation refers to the missing type GenericBootstrap
[ERROR] Line 157: ValidationProvider cannot be resolved to a type
[ERROR] Line 98: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.spi.ValidationProvider cannot be resolved
[ERROR] Line 27: The import javax.validation.bootstrap cannot be resolved
[ERROR] Line 74: ValidationException cannot be resolved to a type
[ERROR] Line 58: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 92: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 147: GenericBootstrap cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.ValidationException cannot be resolved
[ERROR] Line 26: The import javax.validation.bootstrap cannot be resolved
[ERROR] Line 91: ValidationProviderResolver cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/Configuration.java'
[ERROR] Line 202: ValidatorFactory cannot be resolved to a type
[ERROR] Line 93: TraversableResolver cannot be resolved to a type
[ERROR] Line 182: TraversableResolver cannot be resolved to a type
[ERROR] Line 194: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 105: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintDescriptorImpl'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java'
[ERROR] Line 27: The import javax.validation.Payload cannot be resolved
[ERROR] Line 118: The method setPayload(Class[]) from the type ConstraintDescriptorImpl.Builder refers to the missing type Payload [ERROR] Line 163: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 181: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 185: The method getConstraintValidatorClasses() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 49: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 208: The method isReportAsSingleViolation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 68: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 93: ConstraintValidator cannot be resolved to a type [ERROR] Line 153: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: Payload cannot be resolved to a type [ERROR] Line 198: The method getGroups() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 50: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 203: Payload cannot be resolved to a type [ERROR] Line 47: ConstraintValidator cannot be resolved to a type [ERROR] Line 180: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 92: ConstraintValidator cannot be resolved to a type [ERROR] Line 185: ConstraintValidator cannot be resolved to a type [ERROR] Line 66: ConstraintValidator cannot be resolved to a type [ERROR] Line 203: The method getPayload() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 142: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 118: Payload cannot be resolved to a type [ERROR] Line 180: The method getComposingConstraints() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 186: ConstraintValidator cannot be resolved to a type [ERROR] Line 160: Payload cannot be resolved to a type [ERROR] Line 139: Payload cannot be resolved to a type [ERROR] Line 140: ConstraintValidator cannot be resolved to a type [ERROR] Line 86: ConstraintValidator cannot be resolved to a type [ERROR] Line 117: Payload cannot be resolved to a type [ERROR] Line 36: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 46: Payload cannot be resolved to a type [ERROR] Line 65: Payload cannot be resolved to a type [ERROR] Line 122: Payload cannot be resolved to a type [ERROR] Line 123: Payload cannot be resolved to a type [ERROR] Line 26: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 28: The import javax.validation.metadata cannot be resolved [ERROR] Line 161: ConstraintValidator cannot be resolved to a type [ERROR] Line 175: The method getAttributes() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 57: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 151: ConstraintValidator cannot be resolved to a type [ERROR] Line 85: ConstraintValidator cannot be resolved to a type [ERROR] Line 170: The method getAnnotation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 150: Payload cannot be resolved to a type [ERROR] Line 56: ConstraintDescriptor cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.impl.metadata.BeanMetadata' [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/BeanMetadata.java' [ERROR] Line 36: Default cannot be resolved to a type [ERROR] Line 22: The import javax.validation.groups cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.AbstractGwtValidatorFactory' [ERROR] Errors in 'com/google/gwt/validation/client/AbstractGwtValidatorFactory.java' [ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 121: ValidatorContext cannot be resolved to a type [ERROR] Line 121: The method usingContext() of type AbstractGwtValidatorFactory must override or implement a supertype method [ERROR] Line 25: The import javax.validation.Validator cannot be resolved [ERROR] Line 26: The import javax.validation.ValidatorContext cannot be resolved [ERROR] Line 74: The method getConstraintValidatorFactory() of type AbstractGwtValidatorFactory must override or implement a supertype method [ERROR] Line 89: The method getValidator() of type AbstractGwtValidatorFactory must override or implement a supertype method [ERROR] Line 56: ValidatorFactory cannot be resolved to a type [ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 27: The import javax.validation.ValidatorFactory cannot be resolved [ERROR] Line 116: The method unwrap(Class) of type AbstractGwtValidatorFactory must override or implement a supertype method [ERROR] Line 79: The method getMessageInterpolator() of type AbstractGwtValidatorFactory must override or implement a supertype method [ERROR] Line 89: Validator cannot be resolved to a type [ERROR] Line 91: The method getConstraintValidatorFactory() from the type AbstractGwtValidatorFactory refers to the missing type ConstraintValidatorFactory [ERROR] Line 101: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 102: TraversableResolver cannot be resolved to a type [ERROR] Line 92: The method getTraversableResolver() from the type AbstractGwtValidatorFactory refers to the missing type TraversableResolver [ERROR] Line 84: The method getTraversableResolver() of type AbstractGwtValidatorFactory must override or implement a supertype method [ERROR] Line 57: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 59: TraversableResolver cannot be resolved to a type [ERROR] Line 103: TraversableResolver cannot be resolved to a type [ERROR] Line 75: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 85: TraversableResolver cannot be resolved to a type [ERROR] Line 97: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 102: The method getTraversableResolver() from the type ConfigurationState refers to the missing type TraversableResolver [ERROR] Line 74: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 101: The method create(Class) from the type GWT refers to the missing type ConstraintValidatorFactory
[ERROR] Line 84: TraversableResolver cannot be resolved to a type
[ERROR] Line 98: The method getConstraintValidatorFactory() from the type ConfigurationState refers to the missing type ConstraintValidatorFactory
[ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java'
[ERROR] Line 79: ValidationException cannot be resolved to a type
[ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 108: TraversableResolver cannot be resolved to a type
[ERROR] Line 42: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 66: TraversableResolver cannot be resolved to a type
[ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.Validator cannot be resolved
[ERROR] Line 77: ConstraintViolation cannot be resolved to a type
[ERROR] Line 69: TraversableResolver cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method
[ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 74: ValidationException cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 36: Validator cannot be resolved to a type
[ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java'
[ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java'
[ERROR] Line 25: The import javax.validation.metadata cannot be resolved
[ERROR] Line 116: TraversableResolver cannot be resolved to a type
[ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 70: TraversableResolver cannot be resolved to a type
[ERROR] Line 55: BeanDescriptor cannot be resolved to a type
[ERROR] Line 103: TraversableResolver cannot be resolved to a type
[ERROR] Line 56: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 68: BeanDescriptor cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 90: BeanDescriptor cannot be resolved to a type
[ERROR] Line 157: TraversableResolver cannot be resolved to a type
[ERROR] Line 43: TraversableResolver cannot be resolved to a type
[ERROR] Line 129: BeanDescriptor cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 116: BeanDescriptor cannot be resolved to a type
[ERROR] Line 156: TraversableResolver cannot be resolved to a type
[ERROR] Line 103: BeanDescriptor cannot be resolved to a type
[ERROR] Line 129: TraversableResolver cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.metadata cannot be resolved
[ERROR] Line 38: BeanDescriptor cannot be resolved to a type
[ERROR] Line 63: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java'
[ERROR] Line 127: Node cannot be resolved to a type
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 44: Node cannot be resolved to a type
[ERROR] Line 46: Node cannot be resolved to a type
[ERROR] Line 39: Node cannot be resolved to a type
[ERROR] Line 138: Node cannot be resolved to a type
[ERROR] Line 112: Node cannot be resolved to a type
[ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node
[ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 108: Node cannot be resolved to a type
[ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node
[ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 132: Node cannot be resolved to a type
[ERROR] Line 49: Node cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Node cannot be resolved to a type
[ERROR] Line 108: List cannot be resolved to a type
[ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 111: Node cannot be resolved to a type
[ERROR] Line 44: List cannot be resolved to a type
[ERROR] Line 148: Node cannot be resolved to a type
[ERROR] Line 50: Node cannot be resolved to a type
[ERROR] Line 116: Node cannot be resolved to a type
[ERROR] Line 131: Node cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java'
[ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 29: The import javax.validation.metadata cannot be resolved
[ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 142: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 222: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 104: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 221: ConstraintViolation cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 185: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java'
[ERROR] Line 30: Path cannot be resolved to a type
[ERROR] Line 41: Path cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.Path cannot be resolved
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 40: Path cannot be resolved to a type
[ERROR] Line 49: Path cannot be resolved to a type
[ERROR] Line 32: Path cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintViolationImpl'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintViolationImpl.java'
[ERROR] Line 163: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 198: The method getRootBeanClass() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 193: The method getRootBean() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 117: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 183: The method getMessageTemplate() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 205: Path cannot be resolved to a type
[ERROR] Line 48: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 139: Path cannot be resolved to a type
[ERROR] Line 163: The method getConstraintDescriptor() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 52: Path cannot be resolved to a type
[ERROR] Line 58: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 219: Path cannot be resolved to a type
[ERROR] Line 142: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 189: Path cannot be resolved to a type
[ERROR] Line 31: ConstraintViolation cannot be resolved to a type
[ERROR] Line 132: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 155: Path cannot be resolved to a type
[ERROR] Line 173: The method getLeafBean() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 114: Path cannot be resolved to a type
[ERROR] Line 221: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 87: Path cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 178: The method getMessage() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 53: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 168: The method getInvalidValue() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 188: The method getPropertyPath() of type ConstraintViolationImpl must override or implement a supertype method
[ERROR] Line 22: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 188: Path cannot be resolved to a type
[ERROR] Line 57: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 130: Path cannot be resolved to a type
[ERROR] Line 164: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 45: Path cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.metadata cannot be resolved
[ERROR] Line 88: Path cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AbstractSizeValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.Group'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/Group.java'
[ERROR] Line 84: Default cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.groups cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.metadata.ValidationGroupsMetadata'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.PatternValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/PatternValidator.java'
[ERROR] Line 47: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 33: ConstraintValidator cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 37: The method initialize(Pattern) of type PatternValidator must override or implement a supertype method
[ERROR] Errors in 'javax/validation/super/javax/validation/constraints/Pattern.java'
[ERROR] Line 75: Payload cannot be resolved to a type
[ERROR] Line 49: Constraint cannot be resolved to a type
[ERROR] Line 30: The import javax.validation.Constraint cannot be resolved
[ERROR] Line 31: The import javax.validation.Payload cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfShort'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfShort.java'
[ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfShort is inconsistent
[ERROR] Line 28: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtValidatorContext'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidatorContext.java'
[ERROR] Line 44: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 68: Validator cannot be resolved to a type
[ERROR] Line 33: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 35: TraversableResolver cannot be resolved to a type
[ERROR] Line 62: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 88: TraversableResolver cannot be resolved to a type
[ERROR] Line 39: TraversableResolver cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Validator cannot be resolved
[ERROR] Line 76: The method messageInterpolator(MessageInterpolator) of type GwtValidatorContext must override or implement a supertype method
[ERROR] Line 60: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 76: ValidatorContext cannot be resolved to a type
[ERROR] Line 71: TraversableResolver cannot be resolved to a type
[ERROR] Line 87: ValidatorContext cannot be resolved to a type
[ERROR] Line 68: The method getValidator() of type GwtValidatorContext must override or implement a supertype method
[ERROR] Line 92: TraversableResolver cannot be resolved to a type
[ERROR] Line 53: The method getTraversableResolver() from the type AbstractGwtValidatorFactory refers to the missing type TraversableResolver
[ERROR] Line 46: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 53: TraversableResolver cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ValidatorContext cannot be resolved
[ERROR] Line 47: The method getConstraintValidatorFactory() from the type AbstractGwtValidatorFactory refers to the missing type ConstraintValidatorFactory
[ERROR] Line 29: ValidatorContext cannot be resolved to a type
[ERROR] Line 70: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 52: The method getTraversableResolver() from the type AbstractGwtValidatorFactory refers to the missing type TraversableResolver
[ERROR] Line 57: ValidatorContext cannot be resolved to a type
[ERROR] Line 37: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 45: The method getConstraintValidatorFactory() from the type AbstractGwtValidatorFactory refers to the missing type ConstraintValidatorFactory
[ERROR] Line 58: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 52: TraversableResolver cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/AbstractGwtValidatorFactory.java'
[ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 121: ValidatorContext cannot be resolved to a type
[ERROR] Line 121: The method usingContext() of type AbstractGwtValidatorFactory must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.Validator cannot be resolved
[ERROR] Line 26: The import javax.validation.ValidatorContext cannot be resolved
[ERROR] Line 74: The method getConstraintValidatorFactory() of type AbstractGwtValidatorFactory must override or implement a supertype method
[ERROR] Line 89: The method getValidator() of type AbstractGwtValidatorFactory must override or implement a supertype method
[ERROR] Line 56: ValidatorFactory cannot be resolved to a type
[ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Line 116: The method unwrap(Class) of type AbstractGwtValidatorFactory must override or implement a supertype method
[ERROR] Line 79: The method getMessageInterpolator() of type AbstractGwtValidatorFactory must override or implement a supertype method
[ERROR] Line 89: Validator cannot be resolved to a type
[ERROR] Line 91: The method getConstraintValidatorFactory() from the type AbstractGwtValidatorFactory refers to the missing type ConstraintValidatorFactory
[ERROR] Line 101: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 102: TraversableResolver cannot be resolved to a type
[ERROR] Line 92: The method getTraversableResolver() from the type AbstractGwtValidatorFactory refers to the missing type TraversableResolver
[ERROR] Line 84: The method getTraversableResolver() of type AbstractGwtValidatorFactory must override or implement a supertype method
[ERROR] Line 57: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 59: TraversableResolver cannot be resolved to a type
[ERROR] Line 103: TraversableResolver cannot be resolved to a type
[ERROR] Line 75: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 85: TraversableResolver cannot be resolved to a type
[ERROR] Line 97: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 102: The method getTraversableResolver() from the type ConfigurationState refers to the missing type TraversableResolver
[ERROR] Line 74: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 101: The method create(Class) from the type GWT refers to the missing type ConstraintValidatorFactory [ERROR] Line 84: TraversableResolver cannot be resolved to a type [ERROR] Line 98: The method getConstraintValidatorFactory() from the type ConfigurationState refers to the missing type ConstraintValidatorFactory [ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java' [ERROR] Line 21: The import javax.validation.metadata cannot be resolved [ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java' [ERROR] Line 79: ValidationException cannot be resolved to a type [ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 108: TraversableResolver cannot be resolved to a type [ERROR] Line 42: TraversableResolver cannot be resolved to a type [ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 66: TraversableResolver cannot be resolved to a type [ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 29: The import javax.validation.Validator cannot be resolved [ERROR] Line 77: ConstraintViolation cannot be resolved to a type [ERROR] Line 69: TraversableResolver cannot be resolved to a type [ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method [ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 74: ValidationException cannot be resolved to a type [ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 36: Validator cannot be resolved to a type [ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 107: TraversableResolver cannot be resolved to a type [ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved [ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java' [ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 107: TraversableResolver cannot be resolved to a type [ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java' [ERROR] Line 25: The import javax.validation.metadata cannot be resolved [ERROR] Line 116: TraversableResolver cannot be resolved to a type [ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 70: TraversableResolver cannot be resolved to a type [ERROR] Line 55: BeanDescriptor cannot be resolved to a type [ERROR] Line 103: TraversableResolver cannot be resolved to a type [ERROR] Line 56: TraversableResolver cannot be resolved to a type [ERROR] Line 64: TraversableResolver cannot be resolved to a type [ERROR] Line 68: BeanDescriptor cannot be resolved to a type [ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 90: BeanDescriptor cannot be resolved to a type [ERROR] Line 157: TraversableResolver cannot be resolved to a type [ERROR] Line 43: TraversableResolver cannot be resolved to a type [ERROR] Line 129: BeanDescriptor cannot be resolved to a type [ERROR] Line 90: TraversableResolver cannot be resolved to a type [ERROR] Line 116: BeanDescriptor cannot be resolved to a type [ERROR] Line 156: TraversableResolver cannot be resolved to a type [ERROR] Line 103: BeanDescriptor cannot be resolved to a type [ERROR] Line 129: TraversableResolver cannot be resolved to a type [ERROR] Line 24: The import javax.validation.metadata cannot be resolved [ERROR] Line 38: BeanDescriptor cannot be resolved to a type [ERROR] Line 63: BeanDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java' [ERROR] Line 46: Default cannot be resolved to a type [ERROR] Line 28: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java' [ERROR] Line 127: Node cannot be resolved to a type [ERROR] Line 42: Node cannot be resolved to a type [ERROR] Line 44: Node cannot be resolved to a type [ERROR] Line 46: Node cannot be resolved to a type [ERROR] Line 39: Node cannot be resolved to a type [ERROR] Line 138: Node cannot be resolved to a type [ERROR] Line 112: Node cannot be resolved to a type [ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node [ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node [ERROR] Line 108: Node cannot be resolved to a type [ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node [ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node [ERROR] Line 132: Node cannot be resolved to a type [ERROR] Line 49: Node cannot be resolved to a type [ERROR] Line 23: The import javax.validation.Path cannot be resolved [ERROR] Line 32: Node cannot be resolved to a type [ERROR] Line 108: List cannot be resolved to a type [ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method [ERROR] Line 28: Path cannot be resolved to a type [ERROR] Line 111: Node cannot be resolved to a type [ERROR] Line 44: List cannot be resolved to a type [ERROR] Line 148: Node cannot be resolved to a type [ERROR] Line 50: Node cannot be resolved to a type [ERROR] Line 116: Node cannot be resolved to a type [ERROR] Line 131: Node cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java' [ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 29: The import javax.validation.metadata cannot be resolved [ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must override or implement a supertype method [ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 142: NodeContextBuilder cannot be resolved to a type [ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type [ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must override or implement a supertype method [ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 222: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type [ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must override or implement a supertype method [ERROR] Line 104: NodeContextBuilder cannot be resolved to a type [ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 221: ConstraintViolation cannot be resolved to a type [ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 185: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must override or implement a supertype method [ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java' [ERROR] Line 30: Path cannot be resolved to a type [ERROR] Line 41: Path cannot be resolved to a type [ERROR] Line 18: The import javax.validation.Path cannot be resolved [ERROR] Line 28: Path cannot be resolved to a type [ERROR] Line 40: Path cannot be resolved to a type [ERROR] Line 49: Path cannot be resolved to a type [ERROR] Line 32: Path cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AbstractDecimalMaxValidator' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDecimalMaxValidator.java' [ERROR] Line 31: ConstraintValidator cannot be resolved to a type [ERROR] Line 21: The import javax.validation.constraints.DecimalMax cannot be resolved [ERROR] Line 31: DecimalMax cannot be resolved to a type [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 40: DecimalMax cannot be resolved to a type Tracing compile failure path for type 'javax.validation.ConstraintViolationException_CustomFieldSerializer' [ERROR] Errors in 'javax/validation/ConstraintViolationException_CustomFieldSerializer.java' [ERROR] Line 37: ConstraintViolationException cannot be resolved to a type [ERROR] Line 43: ConstraintViolationException cannot be resolved to a type [ERROR] Line 64: ConstraintViolationException cannot be resolved to a type [ERROR] Line 66: The method instantiate(SerializationStreamReader) from the type ConstraintViolationException_CustomFieldSerializer refers to the missing type ConstraintViolationException [ERROR] Line 41: ConstraintViolation cannot be resolved to a type [ERROR] Line 33: ConstraintViolationException cannot be resolved to a type [ERROR] Line 47: ConstraintViolationException cannot be resolved to a type [ERROR] Line 54: ConstraintViolationException cannot be resolved to a type [ERROR] Line 28: The type ConstraintViolationException_CustomFieldSerializer must implement the inherited abstract method CustomFieldSerializer.serializeInstance(SerializationStreamWriter, ConstraintViolationException) [ERROR] Line 71: ConstraintViolationException cannot be resolved to a type [ERROR] Line 28: The type ConstraintViolationException_CustomFieldSerializer must implement the inherited abstract method CustomFieldSerializer.deserializeInstance(SerializationStreamReader, ConstraintViolationException) [ERROR] Line 29: ConstraintViolationException cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.GwtValidationProviderResolver' [ERROR] Errors in 'com/google/gwt/validation/client/GwtValidationProviderResolver.java' [ERROR] Line 39: The method create(Class) from the type GWT refers to the missing type ValidationProvider
[ERROR] Line 25: The import javax.validation.spi.ValidationProvider cannot be resolved
[ERROR] Line 39: ValidationProvider cannot be resolved to a type
[ERROR] Line 45: ValidationProvider cannot be resolved to a type
[ERROR] Line 35: The method createValidationProviderList() from the type GwtValidationProviderResolver refers to the missing type ValidationProvider
[ERROR] Line 37: ValidationProvider cannot be resolved to a type
[ERROR] Line 45: The method getValidationProviders() of type GwtValidationProviderResolver must override or implement a supertype method
[ERROR] Line 24: The import javax.validation.ValidationProviderResolver cannot be resolved
[ERROR] Line 38: ValidationProvider cannot be resolved to a type
[ERROR] Line 46: ValidationProvider cannot be resolved to a type
[ERROR] Line 32: ValidationProviderResolver cannot be resolved to a type
[ERROR] Line 34: ValidationProvider cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.DecimalMinValidatorForNumber'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/DecimalMinValidatorForNumber.java'
[ERROR] Line 27: The hierarchy of the type DecimalMinValidatorForNumber is inconsistent
[ERROR] Line 21: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 31: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDecimalMinValidator.java'
[ERROR] Line 35: DecimalMin cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.constraints.DecimalMin cannot be resolved
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 30: DecimalMin cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfObject'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfObject.java'
[ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfObject is inconsistent
[ERROR] Line 29: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AssertFalseValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AssertFalseValidator.java'
[ERROR] Line 26: ConstraintValidator cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.constraints.AssertFalse cannot be resolved
[ERROR] Line 29: AssertFalse cannot be resolved to a type
[ERROR] Line 19: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: AssertFalse cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 33: ConstraintValidatorContext cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfLong'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfLong.java'
[ERROR] Line 28: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfLong is inconsistent
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.GwtConstraintValidatorFactory'
[ERROR] Errors in 'com/google/gwt/validation/client/GwtConstraintValidatorFactory.java'
[ERROR] Line 35: The method getInstance(Class) of type GwtConstraintValidatorFactory must override or implement a supertype method
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 35: ConstraintValidator cannot be resolved to a type
[ERROR] Line 19: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 27: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 37: ConstraintValidatorFactory cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.spi.GwtValidationProvider'
[ERROR] Errors in 'com/google/gwt/validation/client/spi/GwtValidationProvider.java'
[ERROR] Line 36: ValidatorFactory cannot be resolved to a type
[ERROR] Line 49: BootstrapState cannot be resolved to a type
[ERROR] Line 33: ValidationProvider cannot be resolved to a type
[ERROR] Line 38: ValidatorFactory cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 36: The method buildValidatorFactory(ConfigurationState) of type GwtValidationProvider must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.spi.ValidationProvider cannot be resolved
[ERROR] Line 44: BootstrapState cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/super/com/google/gwt/validation/client/impl/GwtConfiguration.java'
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.getDefaultConstraintValidatorFactory(), BaseGwtConfiguration.getDefaultConstraintValidatorFactory()
[ERROR] Line 29: BootstrapState cannot be resolved to a type
[ERROR] Line 26: The type GwtConfiguration must implement the inherited abstract method Configuration.constraintValidatorFactory(ConstraintValidatorFactory)
[ERROR] Line 20: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.buildValidatorFactory(), BaseGwtConfiguration.buildValidatorFactory()
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.getDefaultTraversableResolver(), BaseGwtConfiguration.getDefaultTraversableResolver()
[ERROR] Line 26: The type GwtConfiguration must implement the inherited abstract method Configuration.traversableResolver(TraversableResolver)
[ERROR] Errors in 'javax/validation/super/javax/validation/Configuration.java'
[ERROR] Line 202: ValidatorFactory cannot be resolved to a type
[ERROR] Line 93: TraversableResolver cannot be resolved to a type
[ERROR] Line 182: TraversableResolver cannot be resolved to a type
[ERROR] Line 194: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 105: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/BaseGwtConfiguration.java'
[ERROR] Line 42: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 49: BootstrapState cannot be resolved to a type
[ERROR] Line 30: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Line 81: The method create(Class) from the type GWT refers to the missing type ConstraintValidatorFactory [ERROR] Line 109: TraversableResolver cannot be resolved to a type [ERROR] Line 75: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 29: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 31: The import javax.validation.spi.BootstrapState cannot be resolved [ERROR] Line 81: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 64: TraversableResolver cannot be resolved to a type [ERROR] Line 40: BootstrapState cannot be resolved to a type [ERROR] Line 47: BootstrapState cannot be resolved to a type [ERROR] Line 27: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 59: ValidatorFactory cannot be resolved to a type [ERROR] Line 90: TraversableResolver cannot be resolved to a type [ERROR] Line 65: The method buildValidatorFactory(ConfigurationState) from the type GwtValidationProvider refers to the missing type ValidatorFactory [ERROR] Line 80: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 61: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 44: TraversableResolver cannot be resolved to a type [ERROR] Line 74: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 110: TraversableResolver cannot be resolved to a type [ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java' [ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 107: TraversableResolver cannot be resolved to a type [ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java' [ERROR] Line 21: The import javax.validation.metadata cannot be resolved [ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintValidatorContextImpl' [ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java' [ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 29: The import javax.validation.metadata cannot be resolved [ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must override or implement a supertype method [ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 142: NodeContextBuilder cannot be resolved to a type [ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type [ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must override or implement a supertype method [ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 222: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type [ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must override or implement a supertype method [ERROR] Line 104: NodeContextBuilder cannot be resolved to a type [ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 221: ConstraintViolation cannot be resolved to a type [ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 185: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must override or implement a supertype method [ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java' [ERROR] Line 127: Node cannot be resolved to a type [ERROR] Line 42: Node cannot be resolved to a type [ERROR] Line 44: Node cannot be resolved to a type [ERROR] Line 46: Node cannot be resolved to a type [ERROR] Line 39: Node cannot be resolved to a type [ERROR] Line 138: Node cannot be resolved to a type [ERROR] Line 112: Node cannot be resolved to a type [ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node [ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node [ERROR] Line 108: Node cannot be resolved to a type [ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node [ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node [ERROR] Line 132: Node cannot be resolved to a type [ERROR] Line 49: Node cannot be resolved to a type [ERROR] Line 23: The import javax.validation.Path cannot be resolved [ERROR] Line 32: Node cannot be resolved to a type [ERROR] Line 108: List cannot be resolved to a type [ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method [ERROR] Line 28: Path cannot be resolved to a type [ERROR] Line 111: Node cannot be resolved to a type [ERROR] Line 44: List cannot be resolved to a type [ERROR] Line 148: Node cannot be resolved to a type [ERROR] Line 50: Node cannot be resolved to a type [ERROR] Line 116: Node cannot be resolved to a type [ERROR] Line 131: Node cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java' [ERROR] Line 30: Path cannot be resolved to a type [ERROR] Line 41: Path cannot be resolved to a type [ERROR] Line 18: The import javax.validation.Path cannot be resolved [ERROR] Line 28: Path cannot be resolved to a type [ERROR] Line 40: Path cannot be resolved to a type [ERROR] Line 49: Path cannot be resolved to a type [ERROR] Line 32: Path cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.DigitsValidatorForNumber' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/DigitsValidatorForNumber.java' [ERROR] Line 27: The hierarchy of the type DigitsValidatorForNumber is inconsistent [ERROR] Line 21: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 31: ConstraintValidatorContext cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDigitsValidator.java' [ERROR] Line 30: Digits cannot be resolved to a type [ERROR] Line 36: Digits cannot be resolved to a type [ERROR] Line 30: ConstraintValidator cannot be resolved to a type [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 21: The import javax.validation.constraints.Digits cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AbstractDigitsValidator' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDigitsValidator.java' [ERROR] Line 30: Digits cannot be resolved to a type [ERROR] Line 36: Digits cannot be resolved to a type [ERROR] Line 30: ConstraintValidator cannot be resolved to a type [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 21: The import javax.validation.constraints.Digits cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfInt' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfInt.java' [ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfInt is inconsistent [ERROR] Line 28: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java' [ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved [ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 27: ConstraintValidator cannot be resolved to a type [ERROR] Line 27: Size cannot be resolved to a type [ERROR] Line 37: Size cannot be resolved to a type Tracing compile failure path for type 'java.util.InternalJsHashCodeMap' [ERROR] Errors in 'com/google/gwt/emul/java/util/InternalJsHashCodeMap.java' [ERROR] Line 120: The method elementAdded() is undefined for the type AbstractHashMap [ERROR] Line 137: The method elementRemoved() is undefined for the type AbstractHashMap Tracing compile failure path for type 'com.google.gwt.editor.client.testing.MockSimpleBeanEditorDriver' [ERROR] Errors in 'com/google/gwt/editor/client/testing/MockSimpleBeanEditorDriver.java' [ERROR] Line 35: The type MockSimpleBeanEditorDriver must implement the inherited abstract method EditorDriver.setConstraintViolations(Iterable>)
[ERROR] Line 26: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 107: Name clash: The method setConstraintViolations(Iterable<ConstraintViolation>) of type MockSimpleBeanEditorDriver has the same erasure as setConstraintViolations(Iterable>) of type EditorDriver but does not override it
[ERROR] Line 108: ConstraintViolation cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForCollection'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForCollection.java'
[ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The hierarchy of the type SizeValidatorForCollection is inconsistent
[ERROR] Line 31: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.PathImpl'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java'
[ERROR] Line 127: Node cannot be resolved to a type
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 44: Node cannot be resolved to a type
[ERROR] Line 46: Node cannot be resolved to a type
[ERROR] Line 39: Node cannot be resolved to a type
[ERROR] Line 138: Node cannot be resolved to a type
[ERROR] Line 112: Node cannot be resolved to a type
[ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node
[ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 108: Node cannot be resolved to a type
[ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node
[ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 132: Node cannot be resolved to a type
[ERROR] Line 49: Node cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Node cannot be resolved to a type
[ERROR] Line 108: List cannot be resolved to a type
[ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 111: Node cannot be resolved to a type
[ERROR] Line 44: List cannot be resolved to a type
[ERROR] Line 148: Node cannot be resolved to a type
[ERROR] Line 50: Node cannot be resolved to a type
[ERROR] Line 116: Node cannot be resolved to a type
[ERROR] Line 131: Node cannot be resolved to a type
Tracing compile failure path for type 'java.util.InternalJsStringMap'
[ERROR] Errors in 'com/google/gwt/emul/java/util/InternalJsStringMap.java'
[ERROR] Line 154: The method elementAdded() is undefined for the type AbstractHashMap<K,V>
[ERROR] Line 166: The method elementRemoved() is undefined for the type AbstractHashMap<K,V>
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.MinValidatorForNumber'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/MinValidatorForNumber.java'
[ERROR] Line 27: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 24: The hierarchy of the type MinValidatorForNumber is inconsistent
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractMinValidator.java'
[ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 35: Min cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.constraints.Min cannot be resolved
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 30: Min cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AbstractDecimalMinValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDecimalMinValidator.java'
[ERROR] Line 35: DecimalMin cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.constraints.DecimalMin cannot be resolved
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 30: DecimalMin cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.NullValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/NullValidator.java'
[ERROR] Line 25: ConstraintValidator cannot be resolved to a type
[ERROR] Line 28: Null cannot be resolved to a type
[ERROR] Line 32: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 19: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 25: Null cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.constraints.Null cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfByte'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfByte.java'
[ERROR] Line 28: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfByte is inconsistent
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtSpecificValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtSpecificValidator.java'
[ERROR] Line 118: ConstraintViolation cannot be resolved to a type
[ERROR] Line 79: ConstraintViolation cannot be resolved to a type
[ERROR] Line 170: ConstraintViolation cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ValidationException cannot be resolved
[ERROR] Line 45: ConstraintViolation cannot be resolved to a type
[ERROR] Line 100: ValidationException cannot be resolved to a type
[ERROR] Line 61: ConstraintViolation cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 119: ValidationException cannot be resolved to a type
[ERROR] Line 154: ConstraintViolation cannot be resolved to a type
[ERROR] Line 217: ConstraintViolation cannot be resolved to a type
[ERROR] Line 200: ValidationException cannot be resolved to a type
[ERROR] Line 156: ValidationException cannot be resolved to a type
[ERROR] Line 132: ConstraintViolation cannot be resolved to a type
[ERROR] Line 198: ConstraintViolation cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtBeanDescriptor.java'
[ERROR] Line 20: The import javax.validation.metadata cannot be resolved
[ERROR] Line 28: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/BeanMetadata.java'
[ERROR] Line 36: Default cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java'
[ERROR] Line 25: The import javax.validation.metadata cannot be resolved
[ERROR] Line 116: TraversableResolver cannot be resolved to a type
[ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 70: TraversableResolver cannot be resolved to a type
[ERROR] Line 55: BeanDescriptor cannot be resolved to a type
[ERROR] Line 103: TraversableResolver cannot be resolved to a type
[ERROR] Line 56: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 68: BeanDescriptor cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 90: BeanDescriptor cannot be resolved to a type
[ERROR] Line 157: TraversableResolver cannot be resolved to a type
[ERROR] Line 43: TraversableResolver cannot be resolved to a type
[ERROR] Line 129: BeanDescriptor cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 116: BeanDescriptor cannot be resolved to a type
[ERROR] Line 156: TraversableResolver cannot be resolved to a type
[ERROR] Line 103: BeanDescriptor cannot be resolved to a type
[ERROR] Line 129: TraversableResolver cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.metadata cannot be resolved
[ERROR] Line 38: BeanDescriptor cannot be resolved to a type
[ERROR] Line 63: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/Group.java'
[ERROR] Line 84: Default cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java'
[ERROR] Line 127: Node cannot be resolved to a type
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 44: Node cannot be resolved to a type
[ERROR] Line 46: Node cannot be resolved to a type
[ERROR] Line 39: Node cannot be resolved to a type
[ERROR] Line 138: Node cannot be resolved to a type
[ERROR] Line 112: Node cannot be resolved to a type
[ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node
[ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 108: Node cannot be resolved to a type
[ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node
[ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 132: Node cannot be resolved to a type
[ERROR] Line 49: Node cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Node cannot be resolved to a type
[ERROR] Line 108: List cannot be resolved to a type
[ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 111: Node cannot be resolved to a type
[ERROR] Line 44: List cannot be resolved to a type
[ERROR] Line 148: Node cannot be resolved to a type
[ERROR] Line 50: Node cannot be resolved to a type
[ERROR] Line 116: Node cannot be resolved to a type
[ERROR] Line 131: Node cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java'
[ERROR] Line 79: ValidationException cannot be resolved to a type
[ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 108: TraversableResolver cannot be resolved to a type
[ERROR] Line 42: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 66: TraversableResolver cannot be resolved to a type
[ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.Validator cannot be resolved
[ERROR] Line 77: ConstraintViolation cannot be resolved to a type
[ERROR] Line 69: TraversableResolver cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method
[ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 74: ValidationException cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 36: Validator cannot be resolved to a type
[ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java'
[ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 29: The import javax.validation.metadata cannot be resolved
[ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 142: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 222: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 104: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 221: ConstraintViolation cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 185: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java'
[ERROR] Line 30: Path cannot be resolved to a type
[ERROR] Line 41: Path cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.Path cannot be resolved
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 40: Path cannot be resolved to a type
[ERROR] Line 49: Path cannot be resolved to a type
[ERROR] Line 32: Path cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.spi.BaseConfigurationState'
[ERROR] Errors in 'com/google/gwt/validation/client/spi/BaseConfigurationState.java'
[ERROR] Line 63: TraversableResolver cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 39: TraversableResolver cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 30: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 36: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 43: TraversableResolver cannot be resolved to a type
[ERROR] Line 48: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 62: TraversableResolver cannot be resolved to a type
[ERROR] Line 33: TraversableResolver cannot be resolved to a type
[ERROR] Line 47: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java'
[ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type
Tracing compile failure path for type 'javax.validation.spi.ConfigurationState'
[ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java'
[ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.NotNullValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/NotNullValidator.java'
[ERROR] Line 26: ConstraintValidator cannot be resolved to a type
[ERROR] Line 19: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 26: NotNull cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.constraints.NotNull cannot be resolved
[ERROR] Line 29: NotNull cannot be resolved to a type
[ERROR] Line 33: ConstraintValidatorContext cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtBeanDescriptor'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtBeanDescriptor.java'
[ERROR] Line 20: The import javax.validation.metadata cannot be resolved
[ERROR] Line 28: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AbstractMaxValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractMaxValidator.java'
[ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 22: The import javax.validation.constraints.Max cannot be resolved
[ERROR] Line 30: Max cannot be resolved to a type
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 35: Max cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.DecimalMinValidatorForString'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/DecimalMinValidatorForString.java'
[ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The hierarchy of the type DecimalMinValidatorForString is inconsistent
[ERROR] Line 30: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDecimalMinValidator.java'
[ERROR] Line 35: DecimalMin cannot be resolved to a type
[ERROR] Line 21: The import javax.validation.constraints.DecimalMin cannot be resolved
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 30: DecimalMin cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AbstractMinValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractMinValidator.java'
[ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 35: Min cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.constraints.Min cannot be resolved
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 30: Min cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.editor.client.impl.SimpleViolation'
[ERROR] Errors in 'com/google/gwt/editor/client/impl/SimpleViolation.java'
[ERROR] Line 44: ConstraintViolation cannot be resolved to a type
[ERROR] Line 97: ConstraintViolation cannot be resolved to a type
[ERROR] Line 73: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: ConstraintViolation cannot be resolved to a type
[ERROR] Line 72: ConstraintViolation cannot be resolved to a type
[ERROR] Line 43: ConstraintViolation cannot be resolved to a type
[ERROR] Line 83: ConstraintViolation cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 40: ConstraintViolation cannot be resolved to a type
[ERROR] Line 49: ConstraintViolation cannot be resolved to a type
[ERROR] Line 78: ConstraintViolation cannot be resolved to a type
[ERROR] Line 92: ConstraintViolation cannot be resolved to a type
[ERROR] Line 102: ConstraintViolation cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/editor/client/EditorDriver.java'
[ERROR] Line 20: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 97: ConstraintViolation cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.MaxValidatorForNumber'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/MaxValidatorForNumber.java'
[ERROR] Line 27: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 24: The hierarchy of the type MaxValidatorForNumber is inconsistent
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractMaxValidator.java'
[ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 22: The import javax.validation.constraints.Max cannot be resolved
[ERROR] Line 30: Max cannot be resolved to a type
[ERROR] Line 30: ConstraintValidator cannot be resolved to a type
[ERROR] Line 35: Max cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.BaseMessageInterpolator'
[ERROR] Errors in 'com/google/gwt/validation/client/BaseMessageInterpolator.java'
[ERROR] Line 114: The method getConstraintDescriptor() from the type MessageInterpolator.Context refers to the missing type ConstraintDescriptor
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.PropertyDescriptorImpl'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PropertyDescriptorImpl.java'
[ERROR] Line 26: The import javax.validation.metadata cannot be resolved
[ERROR] Line 62: ConstraintFinder cannot be resolved to a type
[ERROR] Line 68: The method findConstraints() from the type PropertyDescriptorImpl refers to the missing type ConstraintFinder
[ERROR] Line 87: The method isCascaded() of type PropertyDescriptorImpl must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.metadata cannot be resolved
[ERROR] Line 82: The method hasConstraints() of type PropertyDescriptorImpl must override or implement a supertype method
[ERROR] Line 31: PropertyDescriptor cannot be resolved to a type
[ERROR] Line 72: The method getElementClass() of type PropertyDescriptorImpl must override or implement a supertype method
[ERROR] Line 67: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 77: The method getPropertyName() of type PropertyDescriptorImpl must override or implement a supertype method
[ERROR] Line 62: The method findConstraints() of type PropertyDescriptorImpl must override or implement a supertype method
[ERROR] Line 67: The method getConstraintDescriptors() of type PropertyDescriptorImpl must override or implement a supertype method
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/BeanMetadata.java'
[ERROR] Line 36: Default cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java'
[ERROR] Line 27: The import javax.validation.Payload cannot be resolved
[ERROR] Line 118: The method setPayload(Class[]) from the type ConstraintDescriptorImpl.Builder refers to the missing type Payload [ERROR] Line 163: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 181: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 185: The method getConstraintValidatorClasses() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 49: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 208: The method isReportAsSingleViolation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 68: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 93: ConstraintValidator cannot be resolved to a type [ERROR] Line 153: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: Payload cannot be resolved to a type [ERROR] Line 198: The method getGroups() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 50: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 203: Payload cannot be resolved to a type [ERROR] Line 47: ConstraintValidator cannot be resolved to a type [ERROR] Line 180: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 92: ConstraintValidator cannot be resolved to a type [ERROR] Line 185: ConstraintValidator cannot be resolved to a type [ERROR] Line 66: ConstraintValidator cannot be resolved to a type [ERROR] Line 203: The method getPayload() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 142: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 118: Payload cannot be resolved to a type [ERROR] Line 180: The method getComposingConstraints() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 186: ConstraintValidator cannot be resolved to a type [ERROR] Line 160: Payload cannot be resolved to a type [ERROR] Line 139: Payload cannot be resolved to a type [ERROR] Line 140: ConstraintValidator cannot be resolved to a type [ERROR] Line 86: ConstraintValidator cannot be resolved to a type [ERROR] Line 117: Payload cannot be resolved to a type [ERROR] Line 36: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 46: Payload cannot be resolved to a type [ERROR] Line 65: Payload cannot be resolved to a type [ERROR] Line 122: Payload cannot be resolved to a type [ERROR] Line 123: Payload cannot be resolved to a type [ERROR] Line 26: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 28: The import javax.validation.metadata cannot be resolved [ERROR] Line 161: ConstraintValidator cannot be resolved to a type [ERROR] Line 175: The method getAttributes() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 57: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 151: ConstraintValidator cannot be resolved to a type [ERROR] Line 85: ConstraintValidator cannot be resolved to a type [ERROR] Line 170: The method getAnnotation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 150: Payload cannot be resolved to a type [ERROR] Line 56: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java' [ERROR] Line 46: Default cannot be resolved to a type [ERROR] Line 28: The import javax.validation.groups cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.AssertTrueValidator' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AssertTrueValidator.java' [ERROR] Line 20: The import javax.validation.constraints.AssertTrue cannot be resolved [ERROR] Line 26: ConstraintValidator cannot be resolved to a type [ERROR] Line 19: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 26: AssertTrue cannot be resolved to a type [ERROR] Line 29: AssertTrue cannot be resolved to a type [ERROR] Line 33: ConstraintValidatorContext cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.DecimalMaxValidatorForString' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/DecimalMaxValidatorForString.java' [ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 26: The hierarchy of the type DecimalMaxValidatorForString is inconsistent [ERROR] Line 30: ConstraintValidatorContext cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDecimalMaxValidator.java' [ERROR] Line 31: ConstraintValidator cannot be resolved to a type [ERROR] Line 21: The import javax.validation.constraints.DecimalMax cannot be resolved [ERROR] Line 31: DecimalMax cannot be resolved to a type [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 40: DecimalMax cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.GwtValidation' [ERROR] Errors in 'com/google/gwt/validation/client/GwtValidation.java' [ERROR] Line 25: The import javax.validation.groups cannot be resolved [ERROR] Line 101: Default cannot be resolved to a type Tracing compile failure path for type 'com.mutualofomaha.nbs.client.util.SortListElements' [ERROR] Errors in 'com/mutualofomaha/nbs/client/util/SortListElements.java' [ERROR] Line 96: The method getMethod(String, null) is undefined for the type Class [ERROR] Line 125: The method getMethod(String, Class[]) is undefined for the type Class Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfBoolean' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfBoolean.java' [ERROR] Line 29: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfBoolean is inconsistent [ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java' [ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved [ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 27: ConstraintValidator cannot be resolved to a type [ERROR] Line 27: Size cannot be resolved to a type [ERROR] Line 37: Size cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.editor.client.impl.BaseEditorDriver' [ERROR] Errors in 'com/google/gwt/editor/client/impl/BaseEditorDriver.java' [ERROR] Line 31: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 66: ConstraintViolation cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/editor/client/EditorDriver.java' [ERROR] Line 20: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 97: ConstraintViolation cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/editor/client/impl/SimpleViolation.java' [ERROR] Line 44: ConstraintViolation cannot be resolved to a type [ERROR] Line 97: ConstraintViolation cannot be resolved to a type [ERROR] Line 73: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: ConstraintViolation cannot be resolved to a type [ERROR] Line 72: ConstraintViolation cannot be resolved to a type [ERROR] Line 43: ConstraintViolation cannot be resolved to a type [ERROR] Line 83: ConstraintViolation cannot be resolved to a type [ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 40: ConstraintViolation cannot be resolved to a type [ERROR] Line 49: ConstraintViolation cannot be resolved to a type [ERROR] Line 78: ConstraintViolation cannot be resolved to a type [ERROR] Line 92: ConstraintViolation cannot be resolved to a type [ERROR] Line 102: ConstraintViolation cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfFloat' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfFloat.java' [ERROR] Line 28: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfFloat is inconsistent [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java' [ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved [ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 27: ConstraintValidator cannot be resolved to a type [ERROR] Line 27: Size cannot be resolved to a type [ERROR] Line 37: Size cannot be resolved to a type Tracing compile failure path for type 'javax.validation.constraints.Pattern' [ERROR] Errors in 'javax/validation/super/javax/validation/constraints/Pattern.java' [ERROR] Line 75: Payload cannot be resolved to a type [ERROR] Line 49: Constraint cannot be resolved to a type [ERROR] Line 30: The import javax.validation.Constraint cannot be resolved [ERROR] Line 31: The import javax.validation.Payload cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.impl.AbstractGwtSpecificValidator' [ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtSpecificValidator.java' [ERROR] Line 99: The method validateGroups(GwtValidationContext, GroupValidator, GroupChain) from the type AbstractGwtSpecificValidator refers to the missing type ConstraintViolation [ERROR] Line 181: The method createConstraintValidatorContext(ConstraintDescriptor) from the type GwtValidationContext refers to the missing type ConstraintDescriptor [ERROR] Line 105: ValidationException cannot be resolved to a type [ERROR] Line 213: Type mismatch: cannot convert from ConstraintViolation to ConstraintViolation [ERROR] Line 317: The method validateGroups(GwtValidationContext, Set>, Group...) of type AbstractGwtSpecificValidator.PropertyGroupValidator must override or implement a supertype method [ERROR] Line 336: ConstraintViolation cannot be resolved to a type [ERROR] Line 135: ValidationException cannot be resolved to a type [ERROR] Line 85: ConstraintViolation cannot be resolved to a type [ERROR] Line 190: The method getElementClass() is undefined for the type GwtBeanDescriptor [ERROR] Line 153: Default cannot be resolved to a type [ERROR] Line 142: ValidationException cannot be resolved to a type [ERROR] Line 318: ConstraintViolation cannot be resolved to a type [ERROR] Line 317: Name clash: The method validateGroups(GwtValidationContext, Set>, Group...) of type AbstractGwtSpecificValidator.PropertyGroupValidator has the same erasure as validateGroups(GwtValidationContext, Set>, Group...) of type GroupValidator but does not override it [ERROR] Line 213: ConstraintViolation cannot be resolved to a type [ERROR] Line 208: ConstraintViolation cannot be resolved to a type [ERROR] Line 301: Name clash: The method validateGroups(GwtValidationContext, Set>, Group...) of type AbstractGwtSpecificValidator.ClassGroupValidator has the same erasure as validateGroups(GwtValidationContext, Set>, Group...) of type GroupValidator but does not override it [ERROR] Line 176: ConstraintViolation cannot be resolved to a type [ERROR] Line 266: ConstraintViolation cannot be resolved to a type [ERROR] Line 293: The type AbstractGwtSpecificValidator.ClassGroupValidator must implement the inherited abstract method GroupValidator.validateGroups(GwtValidationContext, Set>, Group...) [ERROR] Line 335: The method validateGroups(GwtValidationContext, Set>, Group...) of type AbstractGwtSpecificValidator.ValueGroupValidator must override or implement a supertype method [ERROR] Line 177: ConstraintValidator cannot be resolved to a type [ERROR] Line 159: ConstraintViolation cannot be resolved to a type [ERROR] Line 124: ValidationException cannot be resolved to a type [ERROR] Line 307: The type AbstractGwtSpecificValidator.PropertyGroupValidator must implement the inherited abstract method GroupValidator.validateGroups(GwtValidationContext, Set>, Group...) [ERROR] Line 97: The method checkDefaultGroupSequenceIsExpandable(List>) from the type GroupChain refers to the missing type GroupDefinitionException
[ERROR] Line 323: The type AbstractGwtSpecificValidator.ValueGroupValidator must implement the inherited abstract method GroupValidator.validateGroups(GwtValidationContext, Set<ConstraintViolation>, Group...)
[ERROR] Line 102: ValidationException cannot be resolved to a type
[ERROR] Line 110: ConstraintViolation cannot be resolved to a type
[ERROR] Line 241: ConstraintViolation cannot be resolved to a type
[ERROR] Line 190: The method getConstraints(ValidationGroupsMetadata) from the type GwtSpecificValidator refers to the missing type ValidationException
[ERROR] Line 34: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 114: ValidationException cannot be resolved to a type
[ERROR] Line 35: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 37: The import javax.validation.ValidationException cannot be resolved
[ERROR] Line 130: ConstraintViolation cannot be resolved to a type
[ERROR] Line 242: The method setConstraintDescriptor(ConstraintDescriptor) from the type ConstraintViolationImpl.Builder refers to the missing type ConstraintDescriptor [ERROR] Line 247: The method getPath() from the type MessageAndPath refers to the missing type Path [ERROR] Line 271: ConstraintViolation cannot be resolved to a type [ERROR] Line 121: ValidationException cannot be resolved to a type [ERROR] Line 139: The method validateGroups(GwtValidationContext, GroupValidator, GroupChain) from the type AbstractGwtSpecificValidator refers to the missing type ConstraintViolation [ERROR] Line 335: Name clash: The method validateGroups(GwtValidationContext, Set>, Group...) of type AbstractGwtSpecificValidator.ValueGroupValidator has the same erasure as validateGroups(GwtValidationContext, Set>, Group...) of type GroupValidator but does not override it [ERROR] Line 237: The constructor MessageInterpolatorContextImpl(ConstraintDescriptor, Object) refers to the missing type ConstraintDescriptor
[ERROR] Line 301: The method validateGroups(GwtValidationContext, Set<ConstraintViolation>, Group...) of type AbstractGwtSpecificValidator.ClassGroupValidator must override or implement a supertype method
[ERROR] Line 302: ConstraintViolation cannot be resolved to a type
[ERROR] Line 118: The method validateGroups(GwtValidationContext, GroupValidator, GroupChain) from the type AbstractGwtSpecificValidator refers to the missing type ConstraintViolation
[ERROR] Line 162: The method createConstraintValidatorContext(ConstraintDescriptor) from the type GwtValidationContext refers to the missing type ConstraintDescriptor
[ERROR] Line 232: ConstraintViolation cannot be resolved to a type
[ERROR] Line 38: The import javax.validation.groups cannot be resolved
[ERROR] Line 145: ValidationException cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java'
[ERROR] Line 27: The import javax.validation.Payload cannot be resolved
[ERROR] Line 118: The method setPayload(Class[]) from the type ConstraintDescriptorImpl.Builder refers to the missing type Payload [ERROR] Line 163: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 181: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 185: The method getConstraintValidatorClasses() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 49: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 208: The method isReportAsSingleViolation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 68: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 93: ConstraintValidator cannot be resolved to a type [ERROR] Line 153: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: Payload cannot be resolved to a type [ERROR] Line 198: The method getGroups() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 50: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 203: Payload cannot be resolved to a type [ERROR] Line 47: ConstraintValidator cannot be resolved to a type [ERROR] Line 180: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 92: ConstraintValidator cannot be resolved to a type [ERROR] Line 185: ConstraintValidator cannot be resolved to a type [ERROR] Line 66: ConstraintValidator cannot be resolved to a type [ERROR] Line 203: The method getPayload() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 142: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 118: Payload cannot be resolved to a type [ERROR] Line 180: The method getComposingConstraints() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 186: ConstraintValidator cannot be resolved to a type [ERROR] Line 160: Payload cannot be resolved to a type [ERROR] Line 139: Payload cannot be resolved to a type [ERROR] Line 140: ConstraintValidator cannot be resolved to a type [ERROR] Line 86: ConstraintValidator cannot be resolved to a type [ERROR] Line 117: Payload cannot be resolved to a type [ERROR] Line 36: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 46: Payload cannot be resolved to a type [ERROR] Line 65: Payload cannot be resolved to a type [ERROR] Line 122: Payload cannot be resolved to a type [ERROR] Line 123: Payload cannot be resolved to a type [ERROR] Line 26: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 28: The import javax.validation.metadata cannot be resolved [ERROR] Line 161: ConstraintValidator cannot be resolved to a type [ERROR] Line 175: The method getAttributes() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 57: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 151: ConstraintValidator cannot be resolved to a type [ERROR] Line 85: ConstraintValidator cannot be resolved to a type [ERROR] Line 170: The method getAnnotation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 150: Payload cannot be resolved to a type [ERROR] Line 56: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/GroupValidator.java' [ERROR] Line 36: ConstraintViolation cannot be resolved to a type [ERROR] Line 21: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/GroupChain.java' [ERROR] Line 26: The import javax.validation.groups cannot be resolved [ERROR] Line 47: GroupDefinitionException cannot be resolved to a type [ERROR] Line 111: Default cannot be resolved to a type [ERROR] Line 103: Default cannot be resolved to a type [ERROR] Line 108: GroupDefinitionException cannot be resolved to a type [ERROR] Line 25: The import javax.validation.GroupDefinitionException cannot be resolved [ERROR] Line 54: The method ensureDefaultGroupSequenceIsExpandable(List, List, int) from the type GroupChain refers to the missing type GroupDefinitionException [ERROR] Line 127: GroupDefinitionException cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtSpecificValidator.java' [ERROR] Line 118: ConstraintViolation cannot be resolved to a type [ERROR] Line 79: ConstraintViolation cannot be resolved to a type [ERROR] Line 170: ConstraintViolation cannot be resolved to a type [ERROR] Line 24: The import javax.validation.ValidationException cannot be resolved [ERROR] Line 45: ConstraintViolation cannot be resolved to a type [ERROR] Line 100: ValidationException cannot be resolved to a type [ERROR] Line 61: ConstraintViolation cannot be resolved to a type [ERROR] Line 23: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 119: ValidationException cannot be resolved to a type [ERROR] Line 154: ConstraintViolation cannot be resolved to a type [ERROR] Line 217: ConstraintViolation cannot be resolved to a type [ERROR] Line 200: ValidationException cannot be resolved to a type [ERROR] Line 156: ValidationException cannot be resolved to a type [ERROR] Line 132: ConstraintViolation cannot be resolved to a type [ERROR] Line 198: ConstraintViolation cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java' [ERROR] Line 25: The import javax.validation.metadata cannot be resolved [ERROR] Line 116: TraversableResolver cannot be resolved to a type [ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 70: TraversableResolver cannot be resolved to a type [ERROR] Line 55: BeanDescriptor cannot be resolved to a type [ERROR] Line 103: TraversableResolver cannot be resolved to a type [ERROR] Line 56: TraversableResolver cannot be resolved to a type [ERROR] Line 64: TraversableResolver cannot be resolved to a type [ERROR] Line 68: BeanDescriptor cannot be resolved to a type [ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 90: BeanDescriptor cannot be resolved to a type [ERROR] Line 157: TraversableResolver cannot be resolved to a type [ERROR] Line 43: TraversableResolver cannot be resolved to a type [ERROR] Line 129: BeanDescriptor cannot be resolved to a type [ERROR] Line 90: TraversableResolver cannot be resolved to a type [ERROR] Line 116: BeanDescriptor cannot be resolved to a type [ERROR] Line 156: TraversableResolver cannot be resolved to a type [ERROR] Line 103: BeanDescriptor cannot be resolved to a type [ERROR] Line 129: TraversableResolver cannot be resolved to a type [ERROR] Line 24: The import javax.validation.metadata cannot be resolved [ERROR] Line 38: BeanDescriptor cannot be resolved to a type [ERROR] Line 63: BeanDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/Group.java' [ERROR] Line 84: Default cannot be resolved to a type [ERROR] Line 18: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java' [ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 29: The import javax.validation.metadata cannot be resolved [ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must override or implement a supertype method [ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 142: NodeContextBuilder cannot be resolved to a type [ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type [ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must override or implement a supertype method [ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 222: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type [ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type [ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path [ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must override or implement a supertype method [ERROR] Line 104: NodeContextBuilder cannot be resolved to a type [ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl must override or implement a supertype method [ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must override or implement a supertype method [ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl.NodeContextBuilderImpl must override or implement a supertype method [ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type [ERROR] Line 221: ConstraintViolation cannot be resolved to a type [ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 185: ConstraintViolation cannot be resolved to a type [ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must override or implement a supertype method [ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java' [ERROR] Line 30: Path cannot be resolved to a type [ERROR] Line 41: Path cannot be resolved to a type [ERROR] Line 18: The import javax.validation.Path cannot be resolved [ERROR] Line 28: Path cannot be resolved to a type [ERROR] Line 40: Path cannot be resolved to a type [ERROR] Line 49: Path cannot be resolved to a type [ERROR] Line 32: Path cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtBeanDescriptor.java' [ERROR] Line 20: The import javax.validation.metadata cannot be resolved [ERROR] Line 28: BeanDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/BeanMetadata.java' [ERROR] Line 36: Default cannot be resolved to a type [ERROR] Line 22: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java' [ERROR] Line 46: Default cannot be resolved to a type [ERROR] Line 28: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java' [ERROR] Line 127: Node cannot be resolved to a type [ERROR] Line 42: Node cannot be resolved to a type [ERROR] Line 44: Node cannot be resolved to a type [ERROR] Line 46: Node cannot be resolved to a type [ERROR] Line 39: Node cannot be resolved to a type [ERROR] Line 138: Node cannot be resolved to a type [ERROR] Line 112: Node cannot be resolved to a type [ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node [ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node [ERROR] Line 108: Node cannot be resolved to a type [ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node [ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node [ERROR] Line 132: Node cannot be resolved to a type [ERROR] Line 49: Node cannot be resolved to a type [ERROR] Line 23: The import javax.validation.Path cannot be resolved [ERROR] Line 32: Node cannot be resolved to a type [ERROR] Line 108: List cannot be resolved to a type [ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method [ERROR] Line 28: Path cannot be resolved to a type [ERROR] Line 111: Node cannot be resolved to a type [ERROR] Line 44: List cannot be resolved to a type [ERROR] Line 148: Node cannot be resolved to a type [ERROR] Line 50: Node cannot be resolved to a type [ERROR] Line 116: Node cannot be resolved to a type [ERROR] Line 131: Node cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java' [ERROR] Line 79: ValidationException cannot be resolved to a type [ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 108: TraversableResolver cannot be resolved to a type [ERROR] Line 42: TraversableResolver cannot be resolved to a type [ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 66: TraversableResolver cannot be resolved to a type [ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 29: The import javax.validation.Validator cannot be resolved [ERROR] Line 77: ConstraintViolation cannot be resolved to a type [ERROR] Line 69: TraversableResolver cannot be resolved to a type [ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method [ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 74: ValidationException cannot be resolved to a type [ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 36: Validator cannot be resolved to a type [ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 107: TraversableResolver cannot be resolved to a type [ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved [ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java' [ERROR] Line 21: The import javax.validation.metadata cannot be resolved [ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.impl.MessageInterpolatorContextImpl' [ERROR] Errors in 'com/google/gwt/validation/client/impl/MessageInterpolatorContextImpl.java' [ERROR] Line 29: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 19: The import javax.validation.metadata cannot be resolved [ERROR] Line 26: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 30: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 35: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 36: ConstraintDescriptor cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForArrayOfDouble' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForArrayOfDouble.java' [ERROR] Line 29: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 24: The hierarchy of the type SizeValidatorForArrayOfDouble is inconsistent [ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java' [ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved [ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 27: ConstraintValidator cannot be resolved to a type [ERROR] Line 27: Size cannot be resolved to a type [ERROR] Line 37: Size cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.editor.client.EditorDriver' [ERROR] Errors in 'com/google/gwt/editor/client/EditorDriver.java' [ERROR] Line 20: The import javax.validation.ConstraintViolation cannot be resolved [ERROR] Line 97: ConstraintViolation cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtBeanDescriptorImpl' [ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtBeanDescriptorImpl.java' [ERROR] Line 150: The method isBeanConstrained() of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 29: The import javax.validation.metadata cannot be resolved [ERROR] Line 28: The import javax.validation.metadata cannot be resolved [ERROR] Line 116: The method getConstrainedProperties() of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 121: PropertyDescriptor cannot be resolved to a type [ERROR] Line 38: The hierarchy of the type GwtBeanDescriptorImpl is inconsistent [ERROR] Line 130: PropertyDescriptor cannot be resolved to a type [ERROR] Line 126: The method findConstraints() from the type GwtBeanDescriptorImpl refers to the missing type ConstraintFinder [ERROR] Line 111: ConstraintFinder cannot be resolved to a type [ERROR] Line 145: The method hasConstraints() of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 139: The method getElementClass() of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 111: The method findConstraints() of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 125: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 125: The method getConstraintDescriptors() of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 130: The method getConstraintsForProperty(String) of type GwtBeanDescriptorImpl must override or implement a supertype method [ERROR] Line 121: The constructor HashSet(Collection) is undefined [ERROR] Line 116: PropertyDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java' [ERROR] Line 27: The import javax.validation.Payload cannot be resolved [ERROR] Line 118: The method setPayload(Class[]) from the type ConstraintDescriptorImpl.Builder refers to the missing type Payload [ERROR] Line 163: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 181: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 185: The method getConstraintValidatorClasses() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 49: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 208: The method isReportAsSingleViolation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 68: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 93: ConstraintValidator cannot be resolved to a type [ERROR] Line 153: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: Payload cannot be resolved to a type [ERROR] Line 198: The method getGroups() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 50: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 203: Payload cannot be resolved to a type [ERROR] Line 47: ConstraintValidator cannot be resolved to a type [ERROR] Line 180: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 92: ConstraintValidator cannot be resolved to a type [ERROR] Line 185: ConstraintValidator cannot be resolved to a type [ERROR] Line 66: ConstraintValidator cannot be resolved to a type [ERROR] Line 203: The method getPayload() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 142: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 118: Payload cannot be resolved to a type [ERROR] Line 180: The method getComposingConstraints() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 186: ConstraintValidator cannot be resolved to a type [ERROR] Line 160: Payload cannot be resolved to a type [ERROR] Line 139: Payload cannot be resolved to a type [ERROR] Line 140: ConstraintValidator cannot be resolved to a type [ERROR] Line 86: ConstraintValidator cannot be resolved to a type [ERROR] Line 117: Payload cannot be resolved to a type [ERROR] Line 36: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 46: Payload cannot be resolved to a type [ERROR] Line 65: Payload cannot be resolved to a type [ERROR] Line 122: Payload cannot be resolved to a type [ERROR] Line 123: Payload cannot be resolved to a type [ERROR] Line 26: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 28: The import javax.validation.metadata cannot be resolved [ERROR] Line 161: ConstraintValidator cannot be resolved to a type [ERROR] Line 175: The method getAttributes() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 57: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 151: ConstraintValidator cannot be resolved to a type [ERROR] Line 85: ConstraintValidator cannot be resolved to a type [ERROR] Line 170: The method getAnnotation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 150: Payload cannot be resolved to a type [ERROR] Line 56: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java' [ERROR] Line 46: Default cannot be resolved to a type [ERROR] Line 28: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/PropertyDescriptorImpl.java' [ERROR] Line 26: The import javax.validation.metadata cannot be resolved [ERROR] Line 62: ConstraintFinder cannot be resolved to a type [ERROR] Line 68: The method findConstraints() from the type PropertyDescriptorImpl refers to the missing type ConstraintFinder [ERROR] Line 87: The method isCascaded() of type PropertyDescriptorImpl must override or implement a supertype method [ERROR] Line 25: The import javax.validation.metadata cannot be resolved [ERROR] Line 82: The method hasConstraints() of type PropertyDescriptorImpl must override or implement a supertype method [ERROR] Line 31: PropertyDescriptor cannot be resolved to a type [ERROR] Line 72: The method getElementClass() of type PropertyDescriptorImpl must override or implement a supertype method [ERROR] Line 67: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 77: The method getPropertyName() of type PropertyDescriptorImpl must override or implement a supertype method [ERROR] Line 62: The method findConstraints() of type PropertyDescriptorImpl must override or implement a supertype method [ERROR] Line 67: The method getConstraintDescriptors() of type PropertyDescriptorImpl must override or implement a supertype method [ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtBeanDescriptor.java' [ERROR] Line 20: The import javax.validation.metadata cannot be resolved [ERROR] Line 28: BeanDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/BeanMetadata.java' [ERROR] Line 36: Default cannot be resolved to a type [ERROR] Line 22: The import javax.validation.groups cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.NotGwtCompatibleValidator' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/NotGwtCompatibleValidator.java' [ERROR] Line 31: ConstraintValidator cannot be resolved to a type [ERROR] Line 21: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 34: The method initialize(A) of type NotGwtCompatibleValidator must override or implement a supertype method [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.DigitsValidatorForString' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/DigitsValidatorForString.java' [ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 26: The hierarchy of the type DigitsValidatorForString is inconsistent [ERROR] Line 30: ConstraintValidatorContext cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDigitsValidator.java' [ERROR] Line 30: Digits cannot be resolved to a type [ERROR] Line 36: Digits cannot be resolved to a type [ERROR] Line 30: ConstraintValidator cannot be resolved to a type [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 21: The import javax.validation.constraints.Digits cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GroupChain' [ERROR] Errors in 'com/google/gwt/validation/client/impl/GroupChain.java' [ERROR] Line 26: The import javax.validation.groups cannot be resolved [ERROR] Line 47: GroupDefinitionException cannot be resolved to a type [ERROR] Line 111: Default cannot be resolved to a type [ERROR] Line 103: Default cannot be resolved to a type [ERROR] Line 108: GroupDefinitionException cannot be resolved to a type [ERROR] Line 25: The import javax.validation.GroupDefinitionException cannot be resolved [ERROR] Line 54: The method ensureDefaultGroupSequenceIsExpandable(List, List, int) from the type GroupChain refers to the missing type GroupDefinitionException [ERROR] Line 127: GroupDefinitionException cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/Group.java' [ERROR] Line 84: Default cannot be resolved to a type [ERROR] Line 18: The import javax.validation.groups cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.MaxValidatorForString' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/MaxValidatorForString.java' [ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 29: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 26: The hierarchy of the type MaxValidatorForString is inconsistent [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractMaxValidator.java' [ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 22: The import javax.validation.constraints.Max cannot be resolved [ERROR] Line 30: Max cannot be resolved to a type [ERROR] Line 30: ConstraintValidator cannot be resolved to a type [ERROR] Line 35: Max cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.DecimalMaxValidatorForNumber' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/DecimalMaxValidatorForNumber.java' [ERROR] Line 27: The hierarchy of the type DecimalMaxValidatorForNumber is inconsistent [ERROR] Line 21: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 31: ConstraintValidatorContext cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractDecimalMaxValidator.java' [ERROR] Line 31: ConstraintValidator cannot be resolved to a type [ERROR] Line 21: The import javax.validation.constraints.DecimalMax cannot be resolved [ERROR] Line 31: DecimalMax cannot be resolved to a type [ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 40: DecimalMax cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.spi.GwtConfigurationState' [ERROR] Errors in 'com/google/gwt/validation/super/com/google/gwt/validation/client/spi/GwtConfigurationState.java' [ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 28: The return types are incompatible for the inherited methods ConfigurationState.getConstraintValidatorFactory(), BaseConfigurationState.getConstraintValidatorFactory() [ERROR] Line 32: TraversableResolver cannot be resolved to a type [ERROR] Line 28: The return types are incompatible for the inherited methods ConfigurationState.getTraversableResolver(), BaseConfigurationState.getTraversableResolver() [ERROR] Line 21: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 30: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/spi/BaseConfigurationState.java' [ERROR] Line 63: TraversableResolver cannot be resolved to a type [ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 39: TraversableResolver cannot be resolved to a type [ERROR] Line 21: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 30: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 36: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 43: TraversableResolver cannot be resolved to a type [ERROR] Line 48: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 62: TraversableResolver cannot be resolved to a type [ERROR] Line 33: TraversableResolver cannot be resolved to a type [ERROR] Line 47: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java' [ERROR] Line 21: The import javax.validation.metadata cannot be resolved [ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java' [ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved [ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved [ERROR] Line 107: TraversableResolver cannot be resolved to a type [ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintFinderImpl' [ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintFinderImpl.java' [ERROR] Line 31: The import javax.validation.metadata cannot be resolved [ERROR] Line 33: The import javax.validation.metadata cannot be resolved [ERROR] Line 96: ConstraintFinder cannot be resolved to a type [ERROR] Line 63: ConstraintFinder cannot be resolved to a type [ERROR] Line 89: Scope cannot be resolved to a variable [ERROR] Line 120: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 70: The method getConstraintDescriptors() of type ConstraintFinderImpl must override or implement a supertype method [ERROR] Line 77: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 99: Default cannot be resolved to a type [ERROR] Line 110: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 32: The import javax.validation.metadata cannot be resolved [ERROR] Line 84: The method getConstraintDescriptors() from the type ConstraintFinderImpl refers to the missing type ConstraintDescriptor [ERROR] Line 88: Scope cannot be resolved to a type [ERROR] Line 70: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 88: ConstraintFinder cannot be resolved to a type [ERROR] Line 96: The method unorderedAndMatchingGroups(Class...) of type ConstraintFinderImpl must override or implement a supertype method
[ERROR] Line 63: The method declaredOn(ElementType...) of type ConstraintFinderImpl must override or implement a supertype method
[ERROR] Line 83: The method hasConstraints() of type ConstraintFinderImpl must override or implement a supertype method
[ERROR] Line 38: ConstraintFinder cannot be resolved to a type
[ERROR] Line 30: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/BeanMetadata.java'
[ERROR] Line 36: Default cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java'
[ERROR] Line 27: The import javax.validation.Payload cannot be resolved
[ERROR] Line 118: The method setPayload(Class[]) from the type ConstraintDescriptorImpl.Builder refers to the missing type Payload [ERROR] Line 163: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 181: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 185: The method getConstraintValidatorClasses() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 49: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 208: The method isReportAsSingleViolation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 68: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 93: ConstraintValidator cannot be resolved to a type [ERROR] Line 153: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 204: Payload cannot be resolved to a type [ERROR] Line 198: The method getGroups() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 50: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 203: Payload cannot be resolved to a type [ERROR] Line 47: ConstraintValidator cannot be resolved to a type [ERROR] Line 180: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 92: ConstraintValidator cannot be resolved to a type [ERROR] Line 185: ConstraintValidator cannot be resolved to a type [ERROR] Line 66: ConstraintValidator cannot be resolved to a type [ERROR] Line 203: The method getPayload() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 142: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 118: Payload cannot be resolved to a type [ERROR] Line 180: The method getComposingConstraints() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 186: ConstraintValidator cannot be resolved to a type [ERROR] Line 160: Payload cannot be resolved to a type [ERROR] Line 139: Payload cannot be resolved to a type [ERROR] Line 140: ConstraintValidator cannot be resolved to a type [ERROR] Line 86: ConstraintValidator cannot be resolved to a type [ERROR] Line 117: Payload cannot be resolved to a type [ERROR] Line 36: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 46: Payload cannot be resolved to a type [ERROR] Line 65: Payload cannot be resolved to a type [ERROR] Line 122: Payload cannot be resolved to a type [ERROR] Line 123: Payload cannot be resolved to a type [ERROR] Line 26: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 28: The import javax.validation.metadata cannot be resolved [ERROR] Line 161: ConstraintValidator cannot be resolved to a type [ERROR] Line 175: The method getAttributes() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 57: ConstraintDescriptor cannot be resolved to a type [ERROR] Line 151: ConstraintValidator cannot be resolved to a type [ERROR] Line 85: ConstraintValidator cannot be resolved to a type [ERROR] Line 170: The method getAnnotation() of type ConstraintDescriptorImpl must override or implement a supertype method [ERROR] Line 150: Payload cannot be resolved to a type [ERROR] Line 56: ConstraintDescriptor cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java' [ERROR] Line 46: Default cannot be resolved to a type [ERROR] Line 28: The import javax.validation.groups cannot be resolved Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GroupChainGenerator' [ERROR] Errors in 'com/google/gwt/validation/client/impl/GroupChainGenerator.java' [ERROR] Line 103: GroupDefinitionException cannot be resolved to a type [ERROR] Line 154: GroupDefinitionException cannot be resolved to a type [ERROR] Line 27: The import javax.validation.GroupDefinitionException cannot be resolved [ERROR] Line 60: ValidationException cannot be resolved to a type [ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved [ERROR] Line 92: GroupDefinitionException cannot be resolved to a type [ERROR] Errors in 'com/google/gwt/validation/client/impl/Group.java' [ERROR] Line 84: Default cannot be resolved to a type [ERROR] Line 18: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java' [ERROR] Line 46: Default cannot be resolved to a type [ERROR] Line 28: The import javax.validation.groups cannot be resolved [ERROR] Errors in 'com/google/gwt/validation/client/impl/GroupChain.java' [ERROR] Line 26: The import javax.validation.groups cannot be resolved [ERROR] Line 47: GroupDefinitionException cannot be resolved to a type [ERROR] Line 111: Default cannot be resolved to a type [ERROR] Line 103: Default cannot be resolved to a type [ERROR] Line 108: GroupDefinitionException cannot be resolved to a type [ERROR] Line 25: The import javax.validation.GroupDefinitionException cannot be resolved [ERROR] Line 54: The method ensureDefaultGroupSequenceIsExpandable(List, List, int) from the type GroupChain refers to the missing type GroupDefinitionException [ERROR] Line 127: GroupDefinitionException cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.MinValidatorForString' [ERROR] Errors in 'com/google/gwt/validation/client/constraints/MinValidatorForString.java' [ERROR] Line 20: The import javax.validation.ConstraintValidatorContext cannot be resolved [ERROR] Line 29: ConstraintValidatorContext cannot be resolved to a type [ERROR] Line 26: The hierarchy of the type MinValidatorForString is inconsistent [ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractMinValidator.java' [ERROR] Line 21: The import javax.validation.ConstraintValidator cannot be resolved [ERROR] Line 35: Min cannot be resolved to a type [ERROR] Line 22: The import javax.validation.constraints.Min cannot be resolved [ERROR] Line 30: ConstraintValidator cannot be resolved to a type [ERROR] Line 30: Min cannot be resolved to a type Tracing compile failure path for type 'com.google.gwt.validation.client.impl.BaseGwtConfiguration' [ERROR] Errors in 'com/google/gwt/validation/client/impl/BaseGwtConfiguration.java' [ERROR] Line 42: ConstraintValidatorFactory cannot be resolved to a type [ERROR] Line 49: BootstrapState cannot be resolved to a type [ERROR] Line 30: The import javax.validation.ValidatorFactory cannot be resolved [ERROR] Line 81: The method create(Class) from the type GWT refers to the missing type ConstraintValidatorFactory
[ERROR] Line 109: TraversableResolver cannot be resolved to a type
[ERROR] Line 75: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 31: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 81: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 40: BootstrapState cannot be resolved to a type
[ERROR] Line 47: BootstrapState cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 59: ValidatorFactory cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 65: The method buildValidatorFactory(ConfigurationState) from the type GwtValidationProvider refers to the missing type ValidatorFactory
[ERROR] Line 80: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 61: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 44: TraversableResolver cannot be resolved to a type
[ERROR] Line 74: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 110: TraversableResolver cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/spi/GwtValidationProvider.java'
[ERROR] Line 36: ValidatorFactory cannot be resolved to a type
[ERROR] Line 49: BootstrapState cannot be resolved to a type
[ERROR] Line 33: ValidationProvider cannot be resolved to a type
[ERROR] Line 38: ValidatorFactory cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 36: The method buildValidatorFactory(ConfigurationState) of type GwtValidationProvider must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.spi.ValidationProvider cannot be resolved
[ERROR] Line 44: BootstrapState cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Errors in 'javax/validation/super/javax/validation/Configuration.java'
[ERROR] Line 202: ValidatorFactory cannot be resolved to a type
[ERROR] Line 93: TraversableResolver cannot be resolved to a type
[ERROR] Line 182: TraversableResolver cannot be resolved to a type
[ERROR] Line 194: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 105: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/super/com/google/gwt/validation/client/impl/GwtConfiguration.java'
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.getDefaultConstraintValidatorFactory(), BaseGwtConfiguration.getDefaultConstraintValidatorFactory()
[ERROR] Line 29: BootstrapState cannot be resolved to a type
[ERROR] Line 26: The type GwtConfiguration must implement the inherited abstract method Configuration.constraintValidatorFactory(ConstraintValidatorFactory)
[ERROR] Line 20: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.buildValidatorFactory(), BaseGwtConfiguration.buildValidatorFactory()
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.getDefaultTraversableResolver(), BaseGwtConfiguration.getDefaultTraversableResolver()
[ERROR] Line 26: The type GwtConfiguration must implement the inherited abstract method Configuration.traversableResolver(TraversableResolver)
[ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java'
[ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtValidationContext'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java'
[ERROR] Line 25: The import javax.validation.metadata cannot be resolved
[ERROR] Line 116: TraversableResolver cannot be resolved to a type
[ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 70: TraversableResolver cannot be resolved to a type
[ERROR] Line 55: BeanDescriptor cannot be resolved to a type
[ERROR] Line 103: TraversableResolver cannot be resolved to a type
[ERROR] Line 56: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 68: BeanDescriptor cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 90: BeanDescriptor cannot be resolved to a type
[ERROR] Line 157: TraversableResolver cannot be resolved to a type
[ERROR] Line 43: TraversableResolver cannot be resolved to a type
[ERROR] Line 129: BeanDescriptor cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 116: BeanDescriptor cannot be resolved to a type
[ERROR] Line 156: TraversableResolver cannot be resolved to a type
[ERROR] Line 103: BeanDescriptor cannot be resolved to a type
[ERROR] Line 129: TraversableResolver cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.metadata cannot be resolved
[ERROR] Line 38: BeanDescriptor cannot be resolved to a type
[ERROR] Line 63: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java'
[ERROR] Line 127: Node cannot be resolved to a type
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 44: Node cannot be resolved to a type
[ERROR] Line 46: Node cannot be resolved to a type
[ERROR] Line 39: Node cannot be resolved to a type
[ERROR] Line 138: Node cannot be resolved to a type
[ERROR] Line 112: Node cannot be resolved to a type
[ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node
[ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 108: Node cannot be resolved to a type
[ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node
[ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 132: Node cannot be resolved to a type
[ERROR] Line 49: Node cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Node cannot be resolved to a type
[ERROR] Line 108: List cannot be resolved to a type
[ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 111: Node cannot be resolved to a type
[ERROR] Line 44: List cannot be resolved to a type
[ERROR] Line 148: Node cannot be resolved to a type
[ERROR] Line 50: Node cannot be resolved to a type
[ERROR] Line 116: Node cannot be resolved to a type
[ERROR] Line 131: Node cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java'
[ERROR] Line 79: ValidationException cannot be resolved to a type
[ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 108: TraversableResolver cannot be resolved to a type
[ERROR] Line 42: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 66: TraversableResolver cannot be resolved to a type
[ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.Validator cannot be resolved
[ERROR] Line 77: ConstraintViolation cannot be resolved to a type
[ERROR] Line 69: TraversableResolver cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method
[ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 74: ValidationException cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 36: Validator cannot be resolved to a type
[ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java'
[ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 29: The import javax.validation.metadata cannot be resolved
[ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 142: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 222: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 104: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 221: ConstraintViolation cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 185: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java'
[ERROR] Line 30: Path cannot be resolved to a type
[ERROR] Line 41: Path cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.Path cannot be resolved
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 40: Path cannot be resolved to a type
[ERROR] Line 49: Path cannot be resolved to a type
[ERROR] Line 32: Path cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.SizeValidatorForString'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/SizeValidatorForString.java'
[ERROR] Line 24: The hierarchy of the type SizeValidatorForString is inconsistent
[ERROR] Line 27: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/AbstractSizeValidator.java'
[ERROR] Line 19: The import javax.validation.constraints.Size cannot be resolved
[ERROR] Line 18: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 27: ConstraintValidator cannot be resolved to a type
[ERROR] Line 27: Size cannot be resolved to a type
[ERROR] Line 37: Size cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.NodeImpl'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/NodeImpl.java'
[ERROR] Line 81: The method getKey() of type NodeImpl must override or implement a supertype method
[ERROR] Line 76: The method getIndex() of type NodeImpl must override or implement a supertype method
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 30: Node cannot be resolved to a type
[ERROR] Line 102: The method isInIterable() of type NodeImpl must override or implement a supertype method
[ERROR] Line 38: Node cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.Path cannot be resolved
[ERROR] Line 25: Node cannot be resolved to a type
[ERROR] Line 28: Node cannot be resolved to a type
[ERROR] Line 34: Node cannot be resolved to a type
[ERROR] Line 86: The method getName() of type NodeImpl must override or implement a supertype method
Tracing compile failure path for type 'com.google.gwt.validation.client.constraints.PastValidatorForDate'
[ERROR] Errors in 'com/google/gwt/validation/client/constraints/PastValidatorForDate.java'
[ERROR] Line 21: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 35: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 22: The import javax.validation.constraints.Past cannot be resolved
[ERROR] Line 31: Past cannot be resolved to a type
[ERROR] Line 28: Past cannot be resolved to a type
[ERROR] Line 20: The import javax.validation.ConstraintValidator cannot be resolved
[ERROR] Line 28: ConstraintValidator cannot be resolved to a type
Tracing compile failure path for type 'javax.validation.MessageInterpolator'
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
Tracing compile failure path for type 'com.mutualofomaha.nbs.health.ui.client.utilities.UserUtil'
[ERROR] Errors in 'file:/C:/SVNWorkspace/health-uiSpring/src/main/java/com/mutualofomaha/nbs/health/ui/client/utilities/UserUtil.java'
[ERROR] Line 25: Pattern cannot be resolved to a type
[ERROR] Line 11: Pattern cannot be resolved to a type
[ERROR] Line 14: Pattern cannot be resolved
[ERROR] Line 34: Pattern cannot be resolved to a type
[ERROR] Line 38: Pattern cannot be resolved to a type
[ERROR] Line 3: The import java.util.regex cannot be resolved
[ERROR] Line 25: Matcher cannot be resolved to a type
[ERROR] Line 4: The import java.util.regex cannot be resolved
[ERROR] Line 11: Pattern cannot be resolved
[ERROR] Line 14: Pattern cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtConfiguration'
[ERROR] Errors in 'com/google/gwt/validation/super/com/google/gwt/validation/client/impl/GwtConfiguration.java'
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.getDefaultConstraintValidatorFactory(), BaseGwtConfiguration.getDefaultConstraintValidatorFactory()
[ERROR] Line 29: BootstrapState cannot be resolved to a type
[ERROR] Line 26: The type GwtConfiguration must implement the inherited abstract method Configuration.constraintValidatorFactory(ConstraintValidatorFactory)
[ERROR] Line 20: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.buildValidatorFactory(), BaseGwtConfiguration.buildValidatorFactory()
[ERROR] Line 26: The return types are incompatible for the inherited methods Configuration.getDefaultTraversableResolver(), BaseGwtConfiguration.getDefaultTraversableResolver()
[ERROR] Line 26: The type GwtConfiguration must implement the inherited abstract method Configuration.traversableResolver(TraversableResolver)
[ERROR] Errors in 'com/google/gwt/validation/client/spi/GwtValidationProvider.java'
[ERROR] Line 36: ValidatorFactory cannot be resolved to a type
[ERROR] Line 49: BootstrapState cannot be resolved to a type
[ERROR] Line 33: ValidationProvider cannot be resolved to a type
[ERROR] Line 38: ValidatorFactory cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 36: The method buildValidatorFactory(ConfigurationState) of type GwtValidationProvider must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.spi.ValidationProvider cannot be resolved
[ERROR] Line 44: BootstrapState cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/BaseGwtConfiguration.java'
[ERROR] Line 42: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 49: BootstrapState cannot be resolved to a type
[ERROR] Line 30: The import javax.validation.ValidatorFactory cannot be resolved
[ERROR] Line 81: The method create(Class<?>) from the type GWT refers to the missing type ConstraintValidatorFactory
[ERROR] Line 109: TraversableResolver cannot be resolved to a type
[ERROR] Line 75: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 31: The import javax.validation.spi.BootstrapState cannot be resolved
[ERROR] Line 81: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 40: BootstrapState cannot be resolved to a type
[ERROR] Line 47: BootstrapState cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 59: ValidatorFactory cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 65: The method buildValidatorFactory(ConfigurationState) from the type GwtValidationProvider refers to the missing type ValidatorFactory
[ERROR] Line 80: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 61: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 44: TraversableResolver cannot be resolved to a type
[ERROR] Line 74: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 110: TraversableResolver cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/Configuration.java'
[ERROR] Line 202: ValidatorFactory cannot be resolved to a type
[ERROR] Line 93: TraversableResolver cannot be resolved to a type
[ERROR] Line 182: TraversableResolver cannot be resolved to a type
[ERROR] Line 194: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 105: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/spi/ConfigurationState.java'
[ERROR] Line 24: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 22: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 93: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.AbstractGwtValidator'
[ERROR] Errors in 'com/google/gwt/validation/client/impl/AbstractGwtValidator.java'
[ERROR] Line 79: ValidationException cannot be resolved to a type
[ERROR] Line 40: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 108: TraversableResolver cannot be resolved to a type
[ERROR] Line 42: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 66: TraversableResolver cannot be resolved to a type
[ERROR] Line 100: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 29: The import javax.validation.Validator cannot be resolved
[ERROR] Line 77: ConstraintViolation cannot be resolved to a type
[ERROR] Line 69: TraversableResolver cannot be resolved to a type
[ERROR] Line 25: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 73: The method unwrap(Class) of type AbstractGwtValidator must override or implement a supertype method
[ERROR] Line 67: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 74: ValidationException cannot be resolved to a type
[ERROR] Line 27: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 36: Validator cannot be resolved to a type
[ERROR] Line 99: ConstraintValidatorFactory cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorFactory cannot be resolved
[ERROR] Line 107: TraversableResolver cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ValidationException cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/GwtValidationContext.java'
[ERROR] Line 25: The import javax.validation.metadata cannot be resolved
[ERROR] Line 116: TraversableResolver cannot be resolved to a type
[ERROR] Line 136: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 70: TraversableResolver cannot be resolved to a type
[ERROR] Line 55: BeanDescriptor cannot be resolved to a type
[ERROR] Line 103: TraversableResolver cannot be resolved to a type
[ERROR] Line 56: TraversableResolver cannot be resolved to a type
[ERROR] Line 64: TraversableResolver cannot be resolved to a type
[ERROR] Line 68: BeanDescriptor cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.TraversableResolver cannot be resolved
[ERROR] Line 90: BeanDescriptor cannot be resolved to a type
[ERROR] Line 157: TraversableResolver cannot be resolved to a type
[ERROR] Line 43: TraversableResolver cannot be resolved to a type
[ERROR] Line 129: BeanDescriptor cannot be resolved to a type
[ERROR] Line 90: TraversableResolver cannot be resolved to a type
[ERROR] Line 116: BeanDescriptor cannot be resolved to a type
[ERROR] Line 156: TraversableResolver cannot be resolved to a type
[ERROR] Line 103: BeanDescriptor cannot be resolved to a type
[ERROR] Line 129: TraversableResolver cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.metadata cannot be resolved
[ERROR] Line 38: BeanDescriptor cannot be resolved to a type
[ERROR] Line 63: BeanDescriptor cannot be resolved to a type
[ERROR] Errors in 'javax/validation/super/javax/validation/MessageInterpolator.java'
[ERROR] Line 21: The import javax.validation.metadata cannot be resolved
[ERROR] Line 66: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/ValidationGroupsMetadata.java'
[ERROR] Line 46: Default cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.groups cannot be resolved
[ERROR] Errors in 'com/google/gwt/validation/client/impl/PathImpl.java'
[ERROR] Line 127: Node cannot be resolved to a type
[ERROR] Line 42: Node cannot be resolved to a type
[ERROR] Line 44: Node cannot be resolved to a type
[ERROR] Line 46: Node cannot be resolved to a type
[ERROR] Line 39: Node cannot be resolved to a type
[ERROR] Line 138: Node cannot be resolved to a type
[ERROR] Line 112: Node cannot be resolved to a type
[ERROR] Line 73: The method createIndexedNode(String, Integer) from the type NodeImpl refers to the missing type Node
[ERROR] Line 84: The method createIterableNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 108: Node cannot be resolved to a type
[ERROR] Line 96: The method createKeyedNode(String, Object) from the type NodeImpl refers to the missing type Node
[ERROR] Line 61: The method createNode(String) from the type NodeImpl refers to the missing type Node
[ERROR] Line 132: Node cannot be resolved to a type
[ERROR] Line 49: Node cannot be resolved to a type
[ERROR] Line 23: The import javax.validation.Path cannot be resolved
[ERROR] Line 32: Node cannot be resolved to a type
[ERROR] Line 108: List cannot be resolved to a type
[ERROR] Line 131: The method iterator() of type PathImpl must override or implement a supertype method
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 111: Node cannot be resolved to a type
[ERROR] Line 44: List cannot be resolved to a type
[ERROR] Line 148: Node cannot be resolved to a type
[ERROR] Line 50: Node cannot be resolved to a type
[ERROR] Line 116: Node cannot be resolved to a type
[ERROR] Line 131: Node cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java'
[ERROR] Line 158: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 25: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 26: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 29: The import javax.validation.metadata cannot be resolved
[ERROR] Line 99: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 196: The method buildConstraintViolationWithTemplate(String) of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 133: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 28: The import javax.validation.ConstraintViolation cannot be resolved
[ERROR] Line 94: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 133: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 158: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 210: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 209: The method getDefaultConstraintMessageTemplate() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 142: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 175: The method atKey(Object) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 99: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 27: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 41: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 163: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 128: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 47: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 175: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 127: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must override or implement a supertype method
[ERROR] Line 64: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 104: The method inIterable() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 113: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 222: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: NodeBuilderDefinedContext cannot be resolved to a type
[ERROR] Line 169: The method atIndex(Integer) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 196: ConstraintViolationBuilder cannot be resolved to a type
[ERROR] Line 215: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 189: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 65: The constructor MessageAndPath(Path, String) refers to the missing type Path
[ERROR] Line 64: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 104: NodeContextBuilder cannot be resolved to a type
[ERROR] Line 182: ConstraintDescriptor cannot be resolved to a type
[ERROR] Line 204: The method disableDefaultConstraintViolation() of type ConstraintValidatorContextImpl<A,T> must override or implement a supertype method
[ERROR] Line 94: The method addConstraintViolation() of type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must override or implement a supertype method
[ERROR] Line 163: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must override or implement a supertype method
[ERROR] Line 80: NodeBuilderCustomizableContext cannot be resolved to a type
[ERROR] Line 221: ConstraintViolation cannot be resolved to a type
[ERROR] Line 24: The import javax.validation.ConstraintValidatorContext cannot be resolved
[ERROR] Line 127: ConstraintValidatorContext cannot be resolved to a type
[ERROR] Line 185: ConstraintViolation cannot be resolved to a type
[ERROR] Line 70: The method addNode(String) of type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must override or implement a supertype method
[ERROR] Line 192: ConstraintDescriptor cannot be resolved to a type
[ERROR] Errors in 'com/google/gwt/validation/client/impl/metadata/MessageAndPath.java'
[ERROR] Line 30: Path cannot be resolved to a type
[ERROR] Line 41: Path cannot be resolved to a type
[ERROR] Line 18: The import javax.validation.Path cannot be resolved
[ERROR] Line 28: Path cannot be resolved to a type
[ERROR] Line 40: Path cannot be resolved to a type
[ERROR] Line 49: Path cannot be resolved to a type
[ERROR] Line 32: Path cannot be resolved to a type
[ERROR] Aborting compile due to errors in some input files

Task :compileGwt FAILED

At a brief glance, those errors are all specific to validation - are you sure this passed a build with GWT 2.9 with the same flags? I suspect it did not, and that these errors are unrelated to the problem you are now facing (but you can probably fix them by adding the javax.validation jars to your classpath).

I do have implementation 'javax.validation:validation-api:2.0.1.Final' but also had an exclude on it. Is 2.0.1 the needed version because I'm still hitting errors.

Compiling module com.mutualofomaha.nbs.health.ui.HealthUnderwritingDashboard
Tracing compile failure path for type 'javax.validation.ClockProvider'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/javax.validation/validation-api/2.0.1.Final/4b714a5167580122e46ead3317ffcdcdbd67c5f0/validation-api-2.0.1.Final-sources.jar!/javax/validation/ClockProvider.java'
[ERROR] Line 34: Clock cannot be resolved to a type
[ERROR] Line 9: The import java.time cannot be resolved
Tracing compile failure path for type 'javax.validation.executable.ExecutableValidator'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/javax.validation/validation-api/2.0.1.Final/4b714a5167580122e46ead3317ffcdcdbd67c5f0/validation-api-2.0.1.Final-sources.jar!/javax/validation/executable/ExecutableValidator.java'
[ERROR] Line 43: No source code is available for type java.lang.reflect.Method; did you forget to inherit a required module?
[ERROR] Line 84: No source code is available for type java.lang.reflect.Constructor; did you forget to inherit a required module?
Tracing compile failure path for type 'javax.validation.ParameterNameProvider'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/javax.validation/validation-api/2.0.1.Final/4b714a5167580122e46ead3317ffcdcdbd67c5f0/validation-api-2.0.1.Final-sources.jar!/javax/validation/ParameterNameProvider.java'
[ERROR] Line 34: No source code is available for type java.lang.reflect.Constructor; did you forget to inherit a required module?
[ERROR] Line 44: No source code is available for type java.lang.reflect.Method; did you forget to inherit a required module?
Tracing compile failure path for type 'com.google.gwt.validation.client.GwtConstraintValidatorFactory'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/GwtConstraintValidatorFactory.java'
[ERROR] Line 26: The type GwtConstraintValidatorFactory must implement the inherited abstract method ConstraintValidatorFactory.releaseInstance(ConstraintValidator)
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintDescriptorImpl'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java'
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getMessageTemplate()
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.unwrap(Class)
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getValidationAppliesTo()
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getValueUnwrapping()
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintViolationImpl'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/ConstraintViolationImpl.java'
[ERROR] Line 31: The type ConstraintViolationImpl must implement the inherited abstract method ConstraintViolation.getExecutableParameters()
[ERROR] Line 31: The type ConstraintViolationImpl must implement the inherited abstract method ConstraintViolation.getExecutableReturnValue()
[ERROR] Line 31: The type ConstraintViolationImpl must implement the inherited abstract method ConstraintViolation.unwrap(Class)
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.NodeImpl'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/NodeImpl.java'
[ERROR] Line 25: The type NodeImpl must implement the inherited abstract method Path.Node.as(Class)
[ERROR] Line 25: The type NodeImpl must implement the inherited abstract method Path.Node.getKind()
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.ConstraintValidatorContextImpl'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java'
[ERROR] Line 39: The type ConstraintValidatorContextImpl<A,T> must implement the inherited abstract method ConstraintValidatorContext.getClockProvider()
[ERROR] Line 46: The type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.addPropertyNode(String)
[ERROR] Line 39: The type ConstraintValidatorContextImpl<A,T> must implement the inherited abstract method ConstraintValidatorContext.unwrap(Class)
[ERROR] Line 46: The type ConstraintValidatorContextImpl<A,T>.ConstraintViolationBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.addContainerElementNode(String, Class, Integer) [ERROR] Line 79: The type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext.addBeanNode() [ERROR] Line 79: The type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext.addPropertyNode(String) [ERROR] Line 112: The type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderDefinedContext.addBeanNode() [ERROR] Line 46: The type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.addBeanNode() [ERROR] Line 112: The type ConstraintValidatorContextImpl.NodeBuilderDefinedContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderDefinedContext.addContainerElementNode(String, Class, Integer)
[ERROR] Line 112: The type ConstraintValidatorContextImpl<A,T>.NodeBuilderDefinedContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderDefinedContext.addPropertyNode(String)
[ERROR] Line 79: The type ConstraintValidatorContextImpl<A,T>.NodeBuilderCustomizableContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext.addContainerElementNode(String, Class, Integer) [ERROR] Line 46: The type ConstraintValidatorContextImpl.ConstraintViolationBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.addParameterNode(int) [ERROR] Line 79: The type ConstraintValidatorContextImpl.NodeBuilderCustomizableContextImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext.inContainer(Class, Integer)
[ERROR] Line 142: The type ConstraintValidatorContextImpl<A,T>.NodeContextBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeContextBuilder.addContainerElementNode(String, Class, Integer) [ERROR] Line 142: The type ConstraintValidatorContextImpl.NodeContextBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeContextBuilder.addBeanNode() [ERROR] Line 142: The type ConstraintValidatorContextImpl.NodeContextBuilderImpl must implement the inherited abstract method ConstraintValidatorContext.ConstraintViolationBuilder.NodeContextBuilder.addPropertyNode(String) Tracing compile failure path for type 'com.google.gwt.validation.client.impl.PropertyDescriptorImpl' [ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/PropertyDescriptorImpl.java' [ERROR] Line 31: The type PropertyDescriptorImpl must implement the inherited abstract method ContainerDescriptor.getConstrainedContainerElementTypes() [ERROR] Line 31: The type PropertyDescriptorImpl must implement the inherited abstract method CascadableDescriptor.getGroupConversions() [ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java' [ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getMessageTemplate() [ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.unwrap(Class) [ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getValidationAppliesTo() [ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getValueUnwrapping() Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtValidatorContext' [ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/GwtValidatorContext.java' [ERROR] Line 29: The type GwtValidatorContext must implement the inherited abstract method ValidatorContext.parameterNameProvider(ParameterNameProvider) [ERROR] Line 29: The type GwtValidatorContext must implement the inherited abstract method ValidatorContext.addValueExtractor(ValueExtractor)
[ERROR] Line 29: The type GwtValidatorContext must implement the inherited abstract method ValidatorContext.clockProvider(ClockProvider)
Tracing compile failure path for type 'com.google.gwt.validation.client.impl.GwtBeanDescriptorImpl'
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/GwtBeanDescriptorImpl.java'
[ERROR] Line 38: The type GwtBeanDescriptorImpl must implement the inherited abstract method BeanDescriptor.getConstrainedConstructors()
[ERROR] Line 38: The type GwtBeanDescriptorImpl must implement the inherited abstract method BeanDescriptor.getConstraintsForConstructor(Class...) [ERROR] Line 38: The type GwtBeanDescriptorImpl must implement the inherited abstract method BeanDescriptor.getConstraintsForMethod(String, Class...)
[ERROR] Line 38: The type GwtBeanDescriptorImpl must implement the inherited abstract method BeanDescriptor.getConstrainedMethods(MethodType, MethodType...)
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/ConstraintDescriptorImpl.java'
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getMessageTemplate()
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.unwrap(Class)
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getValidationAppliesTo()
[ERROR] Line 35: The type ConstraintDescriptorImpl must implement the inherited abstract method ConstraintDescriptor.getValueUnwrapping()
[ERROR] Errors in 'jar:file:/C:/Users/req88093/.gradle/caches/modules-2/files-2.1/org.gwtproject/gwt-user/2.11.0/a6540aeeb3a20ca13ab33b4c77e1efaa83b7a1c1/gwt-user-2.11.0.jar!/com/google/gwt/validation/client/impl/PropertyDescriptorImpl.java'
[ERROR] Line 31: The type PropertyDescriptorImpl must implement the inherited abstract method ContainerDescriptor.getConstrainedContainerElementTypes()
[ERROR] Line 31: The type PropertyDescriptorImpl must implement the inherited abstract method CascadableDescriptor.getGroupConversions()
Tracing compile failure path for type 'java.util.InternalJsStringMap'
[ERROR] Errors in 'com/google/gwt/emul/java/util/InternalJsStringMap.java'
[ERROR] Line 154: The method elementAdded() is undefined for the type AbstractHashMap<K,V>
[ERROR] Line 166: The method elementRemoved() is undefined for the type AbstractHashMap<K,V>
Tracing compile failure path for type 'java.util.InternalJsHashCodeMap'
[ERROR] Errors in 'com/google/gwt/emul/java/util/InternalJsHashCodeMap.java'
[ERROR] Line 120: The method elementAdded() is undefined for the type AbstractHashMap<K,V>
[ERROR] Line 137: The method elementRemoved() is undefined for the type AbstractHashMap<K,V>
Tracing compile failure path for type 'com.mutualofomaha.nbs.health.ui.client.utilities.UserUtil'
[ERROR] Errors in 'file:/C:/SVNWorkspace/health-uiSpring/src/main/java/com/mutualofomaha/nbs/health/ui/client/utilities/UserUtil.java'
[ERROR] Line 25: Pattern cannot be resolved to a type
[ERROR] Line 11: Pattern cannot be resolved to a type
[ERROR] Line 14: Pattern cannot be resolved
[ERROR] Line 34: Pattern cannot be resolved to a type
[ERROR] Line 38: Pattern cannot be resolved to a type
[ERROR] Line 3: The import java.util.regex cannot be resolved
[ERROR] Line 25: Matcher cannot be resolved to a type
[ERROR] Line 4: The import java.util.regex cannot be resolved
[ERROR] Line 11: Pattern cannot be resolved
[ERROR] Line 14: Pattern cannot be resolved to a type
Tracing compile failure path for type 'com.mutualofomaha.nbs.client.util.SortListElements'
[ERROR] Errors in 'com/mutualofomaha/nbs/client/util/SortListElements.java'
[ERROR] Line 96: The method getMethod(String, null) is undefined for the type Class<capture#1-of ? extends Object>
[ERROR] Line 125: The method getMethod(String, Class[]) is undefined for the type Class
[ERROR] Aborting compile due to errors in some input files

Going back to my initial comment: if -strict doesn't work on your project using 2.9, while it would be an excellent idea for you to fix that, it isn't the quickest way to solve your "update to 2.11" issue.

Instead, set the log level to TRACE, and go over that to find out why DOMImpl is unable to compile (and probably will need to look at an issue before that, etc).

That being said, GWT requires validation-api 1.0.0.GA. And you'll want to add the appropriate --add-opens java.base/java.lang=ALL-UNNAMED and/or upgrade Guice to version 5 to fix the illegal access warning, as this will break with JDK 17.

Note your GWT module must also inherit the Validation module --
Normally it's inherited transitively via com.google.gwt.User, but you can try adding it explicitly:

<inherits name="javax.validation.Validation"/> 

to your module definition.
.

Would these errors mean I am missing something as well?

Tracing compile failure path for type 'java.util.InternalJsStringMap'
[ERROR] Errors in 'com/google/gwt/emul/java/util/InternalJsStringMap.java'
[ERROR] Line 154: The method elementAdded() is undefined for the type AbstractHashMap<K,V>
[ERROR] Line 166: The method elementRemoved() is undefined for the type AbstractHashMap<K,V>
Tracing compile failure path for type 'java.util.InternalJsHashCodeMap'
[ERROR] Errors in 'com/google/gwt/emul/java/util/InternalJsHashCodeMap.java'
[ERROR] Line 120: The method elementAdded() is undefined for the type AbstractHashMap<K,V>
[ERROR] Line 137: The method elementRemoved() is undefined for the type AbstractHashMap<K,V>
Tracing compile failure path for type 'com.mutualofomaha.nbs.client.util.SortListElements'
[ERROR] Errors in 'com/mutualofomaha/nbs/client/util/SortListElements.java'
[ERROR] Line 96: The method getMethod(String, null) is undefined for the type Class<capture#1-of ? extends Object>
[ERROR] Line 125: The method getMethod(String, Class[]) is undefined for the type Class

that same error was mentioned in https://groups.google.com/g/google-web-toolkit-contributors/c/o4sRV_tNong/m/fdfMwMAUbRQJ and the cause was having both GWT 2.7 and 2.8 on the classpath

First check your dependency tree using ./gradlew :<your-gwt-project>:dependencies, e.g. ./gradlew :client:dependencies. If you see two versions of GWT on the class path you need to fix that. Maybe you have a com.google.gwt and org.gwtproject variant on class path.

Next you can use Gin 2.1.2 paired with Guice 6.0.0 just fine. I also use this combination.

If the project uses validation then make sure that validation-api-1.0.0.GA is on class path and as implementation you need hibernate-validator-4.1.0.Final and its sources.

If you feel like Java 17 somehow causes errors then you can use Gradle toolchains to tell Gradle to build your GWT project using a different java version, e.g. JDK 11, while still using JDK 17 for your spring/server project.

As a last hint, sometimes 3rd party GWT libraries copy GWT SDK files to their sources and adjust the implementation. In that case they can become incompatible to newer version of GWT SDK. But that is something I would check last if the other steps above do not solve your issues.

@dgeiselmanMOO Have you solved the compile error or at least made meaningful progress so we can close the issue?

Yeah, I am making progress. Thank you

Great. Closing the issue for now.