@@ -46,7 +46,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
4646 <artifactId >maven-protoc-plugin</artifactId >
4747 <version >0.4.2</version >
4848 <configuration >
49- <protocArtifact >com.google.protobuf:protoc:3.0.0-alpha-2 :exe:${os.detected.classifier}</protocArtifact >
49+ <protocArtifact >com.google.protobuf:protoc:3.0.0-alpha-3 :exe:${os.detected.classifier}</protocArtifact >
5050 <pluginId >grpc-java</pluginId >
5151 <pluginArtifact >io.grpc:protoc-gen-grpc-java:0.7.0:exe:${os.detected.classifier}</pluginArtifact >
5252 </configuration >
@@ -89,7 +89,7 @@ sourceSets {
8989 }
9090}
9191
92- protocDep = "com.google.protobuf:protoc:3.0.0-alpha-2 "
92+ protocDep = "com.google.protobuf:protoc:3.0.0-alpha-3 "
9393protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.0"]
9494```
9595
@@ -133,13 +133,13 @@ This section is only necessary if you are making changes to the code
133133generation. Most users only need to use ` skipCodegen=true ` as discussed above.
134134
135135### Build Protobuf
136- The codegen plugin is C++ code and requires protobuf 3.0.0-alpha-2 .
136+ The codegen plugin is C++ code and requires protobuf 3.0.0-alpha-3 .
137137
138138For Linux, Mac and MinGW:
139139```
140140$ git clone https://github.com/google/protobuf.git
141141$ cd protobuf
142- $ git checkout v3.0.0-alpha-2
142+ $ git checkout v3.0.0-alpha-3
143143$ ./autogen.sh
144144$ ./configure
145145$ make
@@ -178,15 +178,15 @@ When building on Windows and VC++, you need to specify project properties for
178178Gradle to find protobuf:
179179```
180180.\gradlew install ^
181- -PvcProtobufInclude=C:\path\to\protobuf-3.0.0-alpha-2 \src ^
182- -PvcProtobufLibs=C:\path\to\protobuf-3.0.0-alpha-2 \vsprojects\Release
181+ -PvcProtobufInclude=C:\path\to\protobuf-3.0.0-alpha-3 \src ^
182+ -PvcProtobufLibs=C:\path\to\protobuf-3.0.0-alpha-3 \vsprojects\Release
183183```
184184
185185Since specifying those properties every build is bothersome, you can instead
186186create `` <project-root>\gradle.properties `` with contents like:
187187```
188- vcProtobufInclude=C:\\path\\to\\protobuf-3.0.0-alpha-2 \\src
189- vcProtobufLibs=C:\\path\\to\\protobuf-3.0.0-alpha-2 \\vsprojects\\Release
188+ vcProtobufInclude=C:\\path\\to\\protobuf-3.0.0-alpha-3 \\src
189+ vcProtobufLibs=C:\\path\\to\\protobuf-3.0.0-alpha-3 \\vsprojects\\Release
190190```
191191
192192The build script will build the codegen for the same architecture as the Java
0 commit comments