grpc 中指定protobuf插件生成的代码到指定的目录

1.需求:指定protobuf插件生成的代码到指定的目录,不必每次都需要复制到自己的项目中
2 代码如下:


            org.xolstice.maven.plugins
            protobuf-maven-plugin
            0.5.0
            
                com.google.protobuf:protoc:3.0.0:exe:${os.detected.classifier}
                grpc-java
                io.grpc:protoc-gen-grpc-java:1.0.0:exe:${os.detected.classifier}
                /*指定代码生成到 src 下*/
                ${basedir}/src/main/java
                false
            
            
                
                    
                        compile
                        compile-custom
                    
                
            
        

你可能感兴趣的:(grpc 中指定protobuf插件生成的代码到指定的目录)