0.6.1 has been released
0.6.1 is a minor feature release. It has better dependency support and supports a new protoc option.
- Import protos from dependencies without recompiling them (Resolves #15).
- If a project compiles proto files, they are packaged as resources in
the compiled jar along with the class files. protobuf-java artifacts
have already been including proto definitions for built-in types such
as Any. This is only done for Java. There is a TODO for Android. - proto files from dependencies are extracted into a temporary
directory, which is added to the--proto_path
argument of the protoc
command line, so that they can be imported in the proto files of this
project, but won't be compiled again.
- If a project compiles proto files, they are packaged as resources in
- The
protobuf
dependencies now works for Android projects too. - Added an option
generateDescriptorSet
toGenerateProtoTask
to support--descriptor_set_out
(0.6.0 should be skipped as it contains an issue which was fixed in 0.6.1).