aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorJenkins CI <ci@sonarsource.com>2015-12-18 08:01:22 +0100
committerJenkins CI <ci@sonarsource.com>2015-12-18 08:01:22 +0100
commitfeb13a2e4ab1234dc8f11c10efe692c96bf418ee (patch)
tree49333c5a620d11f16e2f054ca64815d8c89da10c /pom.xml
parent069498e3513365213618294886caff9781ac23aa (diff)
parentacd392a95c87a510c4df2246fe66cfe5310dfba8 (diff)
downloadsonarqube-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.xml28
1 files changed, 14 insertions, 14 deletions
diff --git a/pom.xml b/pom.xml
index 11d457a6247..e77a66e0fb6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>