gRPC problem in pom.xml file of my spring boot application
12:00 17 Jun 2025

I am getting this error in my pom.xml file when using this build for my gRPC. Cannot resolve symbol 'os.detected.classifier'. Any advice!


        
            
            
                kr.motd.maven
                os-maven-plugin
                1.7.0
            
        
        
            
            
                org.springframework.boot
                spring-boot-maven-plugin
            

            
            
                org.xolstice.maven.plugins
                protobuf-maven-plugin
                0.6.1
                
                    com.google.protobuf:protoc:3.25.5:exe:${os.detected.classifier}
                    grpc-java
                    io.grpc:protoc-gen-grpc-java:1.68.1:exe:${os.detected.classifier}
                
                
                    
                        
                            compile
                            compile-custom
                        
                    
                
            
        
    

I tried some methods but couldnt find any that resolve the issue.

spring-boot pom.xml grpc-java