Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.0 KiB
20 lines
1.0 KiB
5 years ago
|
<project name="generate-sources">
|
||
|
<echo message="Running protoc ..."/>
|
||
|
<mkdir dir="${generated.sources.dir}"/>
|
||
|
<exec executable="${protoc}">
|
||
|
<arg value="--java_out=lite:${generated.sources.dir}"/>
|
||
|
<arg value="--proto_path=${protobuf.source.dir}"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/any.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/api.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/duration.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/empty.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/field_mask.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/source_context.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/struct.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/timestamp.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/type.proto"/>
|
||
|
<arg value="${protobuf.source.dir}/google/protobuf/wrappers.proto"/>
|
||
|
</exec>
|
||
|
</project>
|
||
|
|