Fix output directory of protobuf regeneration.

This commit is contained in:
Mike Hearn 2012-04-08 14:27:08 +02:00
parent 513a75b4ba
commit 0fb81a7288

View file

@ -84,7 +84,7 @@
</path> </path>
<pathconvert pathsep=" " property="proto.files" refid="proto.path"/> <pathconvert pathsep=" " property="proto.files" refid="proto.path"/>
<exec executable="protoc" failonerror="true"> <exec executable="protoc" failonerror="true">
<arg value="--java_out=${project.basedir}/src"/> <arg value="--java_out=${project.basedir}/src/main/java"/>
<arg value="-I${project.basedir}/src"/> <arg value="-I${project.basedir}/src"/>
<arg line="${proto.files}"/> <arg line="${proto.files}"/>
</exec> </exec>