aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorThomas Vérin <thomas.verin@sonarsource.com>2015-12-17 17:02:01 +0100
committerThomas Vérin <thomas.verin@sonarsource.com>2015-12-17 17:02:01 +0100
commit29a84111f6cc9298f83df515830ff40a41d0976c (patch)
treea338fe9e067388b4060e8da0d4c521db406bb476 /pom.xml
parent9c311c559136c62930e6463c525dd735b3ecac16 (diff)
downloadsonarqube-29a84111f6cc9298f83df515830ff40a41d0976c.tar.gz
sonarqube-29a84111f6cc9298f83df515830ff40a41d0976c.zip
[maven-release-plugin] prepare release 5.3-RC25.3-RC2
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml32
1 files changed, 16 insertions, 16 deletions
diff --git a/pom.xml b/pom.xml
index ebc56225f78..77df877b8f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
<packaging>pom</packaging>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<name>SonarQube</name>
<url>http://www.sonarqube.org/</url>
<description>Open source platform for continuous inspection of code quality</description>
@@ -1162,7 +1162,7 @@
<connection>scm:git:git@github.com:SonarSource/sonarqube.git</connection>
<developerConnection>scm:git:git@github.com:SonarSource/sonarqube.git</developerConnection>
<url>https://github.com/SonarSource/sonarqube</url>
- <tag>HEAD</tag>
+ <tag>5.3-RC2</tag>
</scm>
<ciManagement>
@@ -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>