aboutsummaryrefslogtreecommitdiffstats
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
parent9c311c559136c62930e6463c525dd735b3ecac16 (diff)
downloadsonarqube-29a84111f6cc9298f83df515830ff40a41d0976c.tar.gz
sonarqube-29a84111f6cc9298f83df515830ff40a41d0976c.zip
[maven-release-plugin] prepare release 5.3-RC25.3-RC2
-rw-r--r--plugins/sonar-xoo-plugin/pom.xml5
-rw-r--r--pom.xml32
-rw-r--r--server/pom.xml2
-rw-r--r--server/sonar-dev-cockpit-bridge/pom.xml2
-rw-r--r--server/sonar-process-monitor/pom.xml2
-rw-r--r--server/sonar-process/pom.xml2
-rw-r--r--server/sonar-search/pom.xml2
-rw-r--r--server/sonar-server-benchmarks/pom.xml2
-rw-r--r--server/sonar-server/pom.xml2
-rw-r--r--server/sonar-views-bridge/pom.xml2
-rw-r--r--server/sonar-web/pom.xml2
-rw-r--r--sonar-application/pom.xml2
-rw-r--r--sonar-batch-protocol/pom.xml5
-rw-r--r--sonar-batch-shaded/pom.xml2
-rw-r--r--sonar-batch/pom.xml2
-rw-r--r--sonar-check-api/pom.xml2
-rw-r--r--sonar-colorizer/pom.xml2
-rw-r--r--sonar-core/pom.xml2
-rw-r--r--sonar-db/pom.xml2
-rw-r--r--sonar-duplications/pom.xml2
-rw-r--r--sonar-home/pom.xml2
-rw-r--r--sonar-markdown/pom.xml2
-rw-r--r--sonar-plugin-api-deps/pom.xml5
-rw-r--r--sonar-plugin-api/pom.xml2
-rw-r--r--sonar-testing-harness/pom.xml2
-rw-r--r--sonar-ws/pom.xml5
26 files changed, 45 insertions, 49 deletions
diff --git a/plugins/sonar-xoo-plugin/pom.xml b/plugins/sonar-xoo-plugin/pom.xml
index 7b4500c9c21..6d0166239ea 100644
--- a/plugins/sonar-xoo-plugin/pom.xml
+++ b/plugins/sonar-xoo-plugin/pom.xml
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>sonar-xoo-plugin</artifactId>
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>
diff --git a/server/pom.xml b/server/pom.xml
index 85822ac1d27..8bf5505815f 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>server</artifactId>
<packaging>pom</packaging>
diff --git a/server/sonar-dev-cockpit-bridge/pom.xml b/server/sonar-dev-cockpit-bridge/pom.xml
index e63a98facb5..ce997b42ca0 100644
--- a/server/sonar-dev-cockpit-bridge/pom.xml
+++ b/server/sonar-dev-cockpit-bridge/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sonar-dev-cockpit-bridge</artifactId>
diff --git a/server/sonar-process-monitor/pom.xml b/server/sonar-process-monitor/pom.xml
index 3821fcd21ca..f883a0e2715 100644
--- a/server/sonar-process-monitor/pom.xml
+++ b/server/sonar-process-monitor/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/server/sonar-process/pom.xml b/server/sonar-process/pom.xml
index c104542554e..03a83cd96b6 100644
--- a/server/sonar-process/pom.xml
+++ b/server/sonar-process/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/server/sonar-search/pom.xml b/server/sonar-search/pom.xml
index 80a1259ad41..169f32d0777 100644
--- a/server/sonar-search/pom.xml
+++ b/server/sonar-search/pom.xml
@@ -3,7 +3,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/server/sonar-server-benchmarks/pom.xml b/server/sonar-server-benchmarks/pom.xml
index 185e2b012d5..3a3476bd9b0 100644
--- a/server/sonar-server-benchmarks/pom.xml
+++ b/server/sonar-server-benchmarks/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sonar-server-benchmarks</artifactId>
diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml
index b059b0ffe08..29e0c2840a4 100644
--- a/server/sonar-server/pom.xml
+++ b/server/sonar-server/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sonar-server</artifactId>
diff --git a/server/sonar-views-bridge/pom.xml b/server/sonar-views-bridge/pom.xml
index 3b91869d541..1b18393bc87 100644
--- a/server/sonar-views-bridge/pom.xml
+++ b/server/sonar-views-bridge/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sonar-views-bridge</artifactId>
diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml
index 6c74b1db15e..c3aa159fbed 100644
--- a/server/sonar-web/pom.xml
+++ b/server/sonar-web/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>server</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sonar-web</artifactId>
diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml
index 373c924c2c3..80fcecec0ca 100644
--- a/sonar-application/pom.xml
+++ b/sonar-application/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-application</artifactId>
diff --git a/sonar-batch-protocol/pom.xml b/sonar-batch-protocol/pom.xml
index 5eb2081c161..023de8f16fb 100644
--- a/sonar-batch-protocol/pom.xml
+++ b/sonar-batch-protocol/pom.xml
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-batch-protocol</artifactId>
diff --git a/sonar-batch-shaded/pom.xml b/sonar-batch-shaded/pom.xml
index 60279121fc9..10154f1ab05 100644
--- a/sonar-batch-shaded/pom.xml
+++ b/sonar-batch-shaded/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-batch-shaded</artifactId>
diff --git a/sonar-batch/pom.xml b/sonar-batch/pom.xml
index db6efc2bc68..19b311a4387 100644
--- a/sonar-batch/pom.xml
+++ b/sonar-batch/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-batch</artifactId>
diff --git a/sonar-check-api/pom.xml b/sonar-check-api/pom.xml
index 943b301f08c..428e6f58511 100644
--- a/sonar-check-api/pom.xml
+++ b/sonar-check-api/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
<artifactId>sonar-check-api</artifactId>
diff --git a/sonar-colorizer/pom.xml b/sonar-colorizer/pom.xml
index d160ae4a770..96462dd5ce7 100644
--- a/sonar-colorizer/pom.xml
+++ b/sonar-colorizer/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml
index 44f4a814249..30e28451141 100644
--- a/sonar-core/pom.xml
+++ b/sonar-core/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-core</artifactId>
diff --git a/sonar-db/pom.xml b/sonar-db/pom.xml
index 1fc42a30ecf..88fd91ddf61 100644
--- a/sonar-db/pom.xml
+++ b/sonar-db/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-db</artifactId>
diff --git a/sonar-duplications/pom.xml b/sonar-duplications/pom.xml
index 1ecca98ff38..88fbe8e561c 100644
--- a/sonar-duplications/pom.xml
+++ b/sonar-duplications/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-duplications</artifactId>
diff --git a/sonar-home/pom.xml b/sonar-home/pom.xml
index fd6111fceb9..53892e65d49 100644
--- a/sonar-home/pom.xml
+++ b/sonar-home/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-home</artifactId>
diff --git a/sonar-markdown/pom.xml b/sonar-markdown/pom.xml
index 635be5a797f..c4179f9edfe 100644
--- a/sonar-markdown/pom.xml
+++ b/sonar-markdown/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
<relativePath>..</relativePath>
</parent>
diff --git a/sonar-plugin-api-deps/pom.xml b/sonar-plugin-api-deps/pom.xml
index 9d0169ec1ea..3482a46f925 100644
--- a/sonar-plugin-api-deps/pom.xml
+++ b/sonar-plugin-api-deps/pom.xml
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-plugin-api-deps</artifactId>
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml
index 930c472c6c5..3a179847435 100644
--- a/sonar-plugin-api/pom.xml
+++ b/sonar-plugin-api/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-plugin-api</artifactId>
diff --git a/sonar-testing-harness/pom.xml b/sonar-testing-harness/pom.xml
index 17ccf42b7a8..9cc9de34d59 100644
--- a/sonar-testing-harness/pom.xml
+++ b/sonar-testing-harness/pom.xml
@@ -4,7 +4,7 @@
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-testing-harness</artifactId>
<packaging>jar</packaging>
diff --git a/sonar-ws/pom.xml b/sonar-ws/pom.xml
index 4374b542758..a6680358b98 100644
--- a/sonar-ws/pom.xml
+++ b/sonar-ws/pom.xml
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonarsource.sonarqube</groupId>
<artifactId>sonarqube</artifactId>
- <version>5.3-SNAPSHOT</version>
+ <version>5.3-RC2</version>
</parent>
<artifactId>sonar-ws</artifactId>