diff options
author | Jenkins CI <ci@sonarsource.com> | 2015-12-18 08:01:22 +0100 |
---|---|---|
committer | Jenkins CI <ci@sonarsource.com> | 2015-12-18 08:01:22 +0100 |
commit | feb13a2e4ab1234dc8f11c10efe692c96bf418ee (patch) | |
tree | 49333c5a620d11f16e2f054ca64815d8c89da10c /pom.xml | |
parent | 069498e3513365213618294886caff9781ac23aa (diff) | |
parent | acd392a95c87a510c4df2246fe66cfe5310dfba8 (diff) | |
download | sonarqube-feb13a2e4ab1234dc8f11c10efe692c96bf418ee.tar.gz sonarqube-feb13a2e4ab1234dc8f11c10efe692c96bf418ee.zip |
Automatic merge from branch-5.3
* origin/branch-5.3:
[maven-release-plugin] prepare for next development iteration
[maven-release-plugin] prepare release 5.3-RC2
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -1368,15 +1368,15 @@ <configuration> <target> <fileset id="fileset" dir="${project.basedir}/src/main/protobuf"> - <include name="*.proto"/> + <include name="*.proto" /> </fileset> - <pathconvert refid="fileset" property="protos" pathsep=" "/> - <mkdir dir="${project.build.directory}/generated-sources/protobuf"/> - <chmod file="${protobuf.compiler}" perm="u+x"/> + <pathconvert refid="fileset" property="protos" pathsep=" " /> + <mkdir dir="${project.build.directory}/generated-sources/protobuf" /> + <chmod file="${protobuf.compiler}" perm="u+x" /> <exec failonerror="true" executable="${protobuf.compiler}"> - <arg value="--proto_path=${project.basedir}/src/main/protobuf"/> - <arg value="--java_out=${project.build.directory}/generated-sources/protobuf"/> - <arg line="${protos}"/> + <arg value="--proto_path=${project.basedir}/src/main/protobuf" /> + <arg value="--java_out=${project.build.directory}/generated-sources/protobuf" /> + <arg line="${protos}" /> </exec> </target> </configuration> @@ -1435,15 +1435,15 @@ <configuration> <target> <fileset id="fileset" dir="${project.basedir}/src/test/protobuf"> - <include name="*.proto"/> + <include name="*.proto" /> </fileset> - <pathconvert refid="fileset" property="protos" pathsep=" "/> - <mkdir dir="${project.build.directory}/generated-test-sources/protobuf"/> - <chmod file="${protobuf.compiler}" perm="u+x"/> + <pathconvert refid="fileset" property="protos" pathsep=" " /> + <mkdir dir="${project.build.directory}/generated-test-sources/protobuf" /> + <chmod file="${protobuf.compiler}" perm="u+x" /> <exec failonerror="true" executable="${protobuf.compiler}"> - <arg value="--proto_path=${project.basedir}/src/test/protobuf"/> - <arg value="--java_out=${project.build.directory}/generated-test-sources/protobuf"/> - <arg line="${protos}"/> + <arg value="--proto_path=${project.basedir}/src/test/protobuf" /> + <arg value="--java_out=${project.build.directory}/generated-test-sources/protobuf" /> + <arg line="${protos}" /> </exec> </target> </configuration> |