You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am attempting to upgrade the annotationProcessorPath in my maven-compiler-plugin which uses org.infinispan.protostream:protostream-processor from version 4.6.5.Final to version 5.0.12.Final.
The other versions of my infinispan dependencies are 14.0.21.
Here is my configuration class where the error is traced to:
@Configuration
@Import(DataGridCacheConfig.class)
@EnableCaching
public class ProtoStreamConfig {
@Bean
public ProtoInitializer initializer() {
return new ProtoInitializerImpl();
}
}
When I change the version however I get a java.lang.annotation.IncompleteAnnotationException: org.infinispan.protostream.annotations.AutoProtoSchemaBuilder missing element syntax. error.
The error is traced to a ProtoStreamConfig class, specifically the line that instantiates the generated Impl class for my @AutoProtoSchemaBuilder interface.
Commenting out the entire Configuration class also results in an error.
Am I missing some other dependency or do they need to be upgraded to another major version?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello!
I am attempting to upgrade the annotationProcessorPath in my maven-compiler-plugin which uses
org.infinispan.protostream:protostream-processor
from version4.6.5.Final
to version5.0.12.Final
.The other versions of my infinispan dependencies are 14.0.21.
Here is my maven configuration:
Here is my configuration class where the error is traced to:
Here is my interface I am using:
When I change the version however I get a
java.lang.annotation.IncompleteAnnotationException: org.infinispan.protostream.annotations.AutoProtoSchemaBuilder missing element syntax.
error.The error is traced to a ProtoStreamConfig class, specifically the line that instantiates the generated Impl class for my @AutoProtoSchemaBuilder interface.
Commenting out the entire Configuration class also results in an error.
Am I missing some other dependency or do they need to be upgraded to another major version?
Beta Was this translation helpful? Give feedback.
All reactions