3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-14 19:25:51 +00:00

Move protobufs to src/main/proto.

This commit is contained in:
Andreas Schildbach 2018-03-07 12:20:07 +01:00
parent 8e395e2b31
commit 2d06e866de
7 changed files with 2 additions and 2 deletions

View File

@ -70,14 +70,14 @@
<configuration>
<tasks>
<path id="proto.path">
<fileset dir="src">
<fileset dir="src/main/proto">
<include name="**/*.proto"/>
</fileset>
</path>
<pathconvert pathsep=" " property="proto.files" refid="proto.path"/>
<exec executable="protoc" failonerror="true">
<arg value="--java_out=${project.basedir}/src/main/java"/>
<arg value="-I${project.basedir}/src"/>
<arg value="-I${project.basedir}/src/main/proto"/>
<arg line="${proto.files}"/>
</exec>
</tasks>