diff options
author | Thomas Vérin <thomas.verin@sonarsource.com> | 2015-12-17 17:02:01 +0100 |
---|---|---|
committer | Thomas Vérin <thomas.verin@sonarsource.com> | 2015-12-17 17:02:01 +0100 |
commit | 29a84111f6cc9298f83df515830ff40a41d0976c (patch) | |
tree | a338fe9e067388b4060e8da0d4c521db406bb476 /pom.xml | |
parent | 9c311c559136c62930e6463c525dd735b3ecac16 (diff) | |
download | sonarqube-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.xml | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -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> |