From f363643318a80a0d1b9799eff0a7b0156d9a5708 Mon Sep 17 00:00:00 2001 From: Daniel Schwarz Date: Tue, 10 Oct 2017 18:10:28 +0200 Subject: fix quality flaws --- .../src/main/java/org/sonar/process/System2.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'server/sonar-process') diff --git a/server/sonar-process/src/main/java/org/sonar/process/System2.java b/server/sonar-process/src/main/java/org/sonar/process/System2.java index 1c9ca5c51c6..0e32165046c 100644 --- a/server/sonar-process/src/main/java/org/sonar/process/System2.java +++ b/server/sonar-process/src/main/java/org/sonar/process/System2.java @@ -20,6 +20,7 @@ package org.sonar.process; import java.util.Map; +import org.apache.commons.lang.SystemUtils; /** * An interface allowing to wrap around static call to {@link System} class. @@ -35,6 +36,11 @@ public interface System2 { public String getenv(String name) { return System.getenv(name); } + + @Override + public boolean isOsWindows() { + return SystemUtils.IS_OS_WINDOWS; + } }; /** @@ -46,4 +52,9 @@ public interface System2 { * Proxy to {@link System#getenv(String)}. */ String getenv(String name); + + /** + * True if this is MS Windows. + */ + boolean isOsWindows(); } -- cgit v1.2.3 From afa67e093d3a5b066e7ca50df4a99c483f675c0a Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Tue, 10 Oct 2017 22:10:01 +0200 Subject: Publish 6.6 Release Candidate 1 --- plugins/sonar-xoo-plugin/pom.xml | 2 +- pom.xml | 2 +- server/pom.xml | 2 +- server/sonar-ce/pom.xml | 2 +- server/sonar-db-core/pom.xml | 2 +- server/sonar-db-dao/pom.xml | 2 +- server/sonar-db-migration/pom.xml | 2 +- server/sonar-db-testing/pom.xml | 2 +- server/sonar-main/pom.xml | 2 +- server/sonar-plugin-bridge/pom.xml | 2 +- server/sonar-process/pom.xml | 2 +- server/sonar-server/pom.xml | 2 +- server/sonar-web/pom.xml | 2 +- sonar-application/pom.xml | 2 +- sonar-check-api/pom.xml | 2 +- sonar-core/pom.xml | 2 +- sonar-duplications/pom.xml | 2 +- sonar-home/pom.xml | 2 +- sonar-markdown/pom.xml | 2 +- sonar-plugin-api-deps/pom.xml | 2 +- sonar-plugin-api/pom.xml | 2 +- sonar-scanner-engine-shaded/pom.xml | 2 +- sonar-scanner-engine/pom.xml | 2 +- sonar-scanner-protocol/pom.xml | 2 +- sonar-testing-harness/pom.xml | 2 +- sonar-ws/pom.xml | 2 +- tests/plugins/access-secured-props-plugin/pom.xml | 2 +- tests/plugins/backdating-customplugin/pom.xml | 2 +- tests/plugins/backdating-plugin-v1/pom.xml | 2 +- tests/plugins/backdating-plugin-v2/pom.xml | 2 +- tests/plugins/base-auth-plugin/pom.xml | 2 +- tests/plugins/batch-plugin/pom.xml | 2 +- tests/plugins/extension-lifecycle-plugin/pom.xml | 2 +- tests/plugins/fake-billing-plugin/pom.xml | 2 +- tests/plugins/fake-governance-plugin/pom.xml | 2 +- tests/plugins/foo-plugin-v1/pom.xml | 2 +- tests/plugins/foo-plugin-v2/pom.xml | 2 +- tests/plugins/global-property-change-plugin/pom.xml | 2 +- tests/plugins/issue-filter-plugin/pom.xml | 2 +- tests/plugins/l10n-fr-pack/pom.xml | 2 +- tests/plugins/license-plugin/pom.xml | 2 +- tests/plugins/oauth2-auth-plugin/pom.xml | 2 +- tests/plugins/pom.xml | 2 +- tests/plugins/posttask-plugin/pom.xml | 2 +- tests/plugins/project-builder-plugin/pom.xml | 2 +- tests/plugins/property-relocation-plugin/pom.xml | 2 +- tests/plugins/property-sets-plugin/pom.xml | 2 +- tests/plugins/security-plugin/pom.xml | 2 +- tests/plugins/server-plugin/pom.xml | 2 +- tests/plugins/settings-encryption-plugin/pom.xml | 2 +- tests/plugins/settings-plugin/pom.xml | 2 +- tests/plugins/sonar-fake-plugin/pom.xml | 2 +- tests/plugins/sonar-subcategories-plugin/pom.xml | 2 +- tests/plugins/ui-extensions-plugin/pom.xml | 2 +- tests/plugins/wait-at-platform-level4-plugin/pom.xml | 2 +- tests/plugins/ws-plugin/pom.xml | 2 +- tests/pom.xml | 2 +- 57 files changed, 57 insertions(+), 57 deletions(-) (limited to 'server/sonar-process') diff --git a/plugins/sonar-xoo-plugin/pom.xml b/plugins/sonar-xoo-plugin/pom.xml index 50952554e47..15d140f886a 100644 --- a/plugins/sonar-xoo-plugin/pom.xml +++ b/plugins/sonar-xoo-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../.. sonar-xoo-plugin diff --git a/pom.xml b/pom.xml index 26b1752d56a..59ea1200d2e 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ org.sonarsource.sonarqube sonarqube pom - 6.6-SNAPSHOT + 6.6-RC1 SonarQube http://www.sonarqube.org/ Open source platform for continuous inspection of code quality diff --git a/server/pom.xml b/server/pom.xml index bd0564d4620..436f19f645c 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 server pom diff --git a/server/sonar-ce/pom.xml b/server/sonar-ce/pom.xml index ca7bb7c1677..342d2e0b8c5 100644 --- a/server/sonar-ce/pom.xml +++ b/server/sonar-ce/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 .. sonar-ce diff --git a/server/sonar-db-core/pom.xml b/server/sonar-db-core/pom.xml index 55258bce31f..d9cf63617bc 100644 --- a/server/sonar-db-core/pom.xml +++ b/server/sonar-db-core/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 sonar-db-core diff --git a/server/sonar-db-dao/pom.xml b/server/sonar-db-dao/pom.xml index bec58980191..3c787ccf3fa 100644 --- a/server/sonar-db-dao/pom.xml +++ b/server/sonar-db-dao/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 sonar-db-dao diff --git a/server/sonar-db-migration/pom.xml b/server/sonar-db-migration/pom.xml index 9447cf687fe..1167ae3a25f 100644 --- a/server/sonar-db-migration/pom.xml +++ b/server/sonar-db-migration/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 sonar-db-migration diff --git a/server/sonar-db-testing/pom.xml b/server/sonar-db-testing/pom.xml index 51f53cf694a..8c82da82613 100644 --- a/server/sonar-db-testing/pom.xml +++ b/server/sonar-db-testing/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 sonar-db-testing diff --git a/server/sonar-main/pom.xml b/server/sonar-main/pom.xml index eba72bb7f62..59ab2074b0e 100644 --- a/server/sonar-main/pom.xml +++ b/server/sonar-main/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 ../ diff --git a/server/sonar-plugin-bridge/pom.xml b/server/sonar-plugin-bridge/pom.xml index 896695df61a..fad9c5b7fda 100644 --- a/server/sonar-plugin-bridge/pom.xml +++ b/server/sonar-plugin-bridge/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 .. sonar-plugin-bridge diff --git a/server/sonar-process/pom.xml b/server/sonar-process/pom.xml index 00811e45e56..02c3af77154 100644 --- a/server/sonar-process/pom.xml +++ b/server/sonar-process/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 ../ diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index 4427ee35144..4f48dd974c4 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 .. sonar-server diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml index 841d23d929a..8363a1d68d8 100644 --- a/server/sonar-web/pom.xml +++ b/server/sonar-web/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-SNAPSHOT + 6.6-RC1 .. sonar-web diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index 515f206f3e8..5e682bd4ab9 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -7,7 +7,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-application diff --git a/sonar-check-api/pom.xml b/sonar-check-api/pom.xml index b00cb5629a5..667deb41a20 100644 --- a/sonar-check-api/pom.xml +++ b/sonar-check-api/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 .. sonar-check-api diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index 3e86dd4430e..2fba6db7b77 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-core diff --git a/sonar-duplications/pom.xml b/sonar-duplications/pom.xml index 80a99f34c80..67c8561e2a6 100644 --- a/sonar-duplications/pom.xml +++ b/sonar-duplications/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-duplications diff --git a/sonar-home/pom.xml b/sonar-home/pom.xml index 45b9ff688ac..a43861f1efe 100644 --- a/sonar-home/pom.xml +++ b/sonar-home/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-home diff --git a/sonar-markdown/pom.xml b/sonar-markdown/pom.xml index 03105a7839b..d37b2bfdfdf 100644 --- a/sonar-markdown/pom.xml +++ b/sonar-markdown/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 .. diff --git a/sonar-plugin-api-deps/pom.xml b/sonar-plugin-api-deps/pom.xml index 071b1f5fc64..d45c243a8c9 100644 --- a/sonar-plugin-api-deps/pom.xml +++ b/sonar-plugin-api-deps/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-plugin-api-deps diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index 0c0f38e0731..7559c1f8152 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-plugin-api diff --git a/sonar-scanner-engine-shaded/pom.xml b/sonar-scanner-engine-shaded/pom.xml index 6e02b53b553..3bdf9916f7a 100644 --- a/sonar-scanner-engine-shaded/pom.xml +++ b/sonar-scanner-engine-shaded/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-scanner-engine-shaded diff --git a/sonar-scanner-engine/pom.xml b/sonar-scanner-engine/pom.xml index 580ee0095ff..d817ab4dd38 100644 --- a/sonar-scanner-engine/pom.xml +++ b/sonar-scanner-engine/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-scanner-engine diff --git a/sonar-scanner-protocol/pom.xml b/sonar-scanner-protocol/pom.xml index 9d6ef5b3dc6..c44a2b3a89d 100644 --- a/sonar-scanner-protocol/pom.xml +++ b/sonar-scanner-protocol/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-scanner-protocol diff --git a/sonar-testing-harness/pom.xml b/sonar-testing-harness/pom.xml index e3815fe3652..30b95aa6a80 100644 --- a/sonar-testing-harness/pom.xml +++ b/sonar-testing-harness/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-testing-harness jar diff --git a/sonar-ws/pom.xml b/sonar-ws/pom.xml index 8b936256775..a410240072b 100644 --- a/sonar-ws/pom.xml +++ b/sonar-ws/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 sonar-ws diff --git a/tests/plugins/access-secured-props-plugin/pom.xml b/tests/plugins/access-secured-props-plugin/pom.xml index 4a4bb2e9382..5d2dd44d3a6 100644 --- a/tests/plugins/access-secured-props-plugin/pom.xml +++ b/tests/plugins/access-secured-props-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 access-secured-props-plugin diff --git a/tests/plugins/backdating-customplugin/pom.xml b/tests/plugins/backdating-customplugin/pom.xml index 8371451ba88..cb3e8633928 100644 --- a/tests/plugins/backdating-customplugin/pom.xml +++ b/tests/plugins/backdating-customplugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../.. backdating-customplugin diff --git a/tests/plugins/backdating-plugin-v1/pom.xml b/tests/plugins/backdating-plugin-v1/pom.xml index 85a241daf31..12d5130bd60 100644 --- a/tests/plugins/backdating-plugin-v1/pom.xml +++ b/tests/plugins/backdating-plugin-v1/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../.. backdating-plugin-v1 diff --git a/tests/plugins/backdating-plugin-v2/pom.xml b/tests/plugins/backdating-plugin-v2/pom.xml index 59adfffc20d..657808c93fd 100644 --- a/tests/plugins/backdating-plugin-v2/pom.xml +++ b/tests/plugins/backdating-plugin-v2/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../.. backdating-plugin-v2 diff --git a/tests/plugins/base-auth-plugin/pom.xml b/tests/plugins/base-auth-plugin/pom.xml index 637a45f2b2b..2a3418c284e 100644 --- a/tests/plugins/base-auth-plugin/pom.xml +++ b/tests/plugins/base-auth-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 base-auth-plugin diff --git a/tests/plugins/batch-plugin/pom.xml b/tests/plugins/batch-plugin/pom.xml index 6f3c4c40d30..90487e9f28c 100644 --- a/tests/plugins/batch-plugin/pom.xml +++ b/tests/plugins/batch-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 batch-plugin diff --git a/tests/plugins/extension-lifecycle-plugin/pom.xml b/tests/plugins/extension-lifecycle-plugin/pom.xml index dce5ef4127d..5d3e5c5b1a8 100644 --- a/tests/plugins/extension-lifecycle-plugin/pom.xml +++ b/tests/plugins/extension-lifecycle-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 extension-lifecycle-plugin 1.0-SNAPSHOT diff --git a/tests/plugins/fake-billing-plugin/pom.xml b/tests/plugins/fake-billing-plugin/pom.xml index 17fd7f0b177..9eacb0a1f73 100644 --- a/tests/plugins/fake-billing-plugin/pom.xml +++ b/tests/plugins/fake-billing-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 fake-billing-plugin diff --git a/tests/plugins/fake-governance-plugin/pom.xml b/tests/plugins/fake-governance-plugin/pom.xml index cf2b24a80c7..5ed510143fc 100644 --- a/tests/plugins/fake-governance-plugin/pom.xml +++ b/tests/plugins/fake-governance-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 fake-governance-plugin diff --git a/tests/plugins/foo-plugin-v1/pom.xml b/tests/plugins/foo-plugin-v1/pom.xml index 2d84ea23660..d9a5822fa17 100644 --- a/tests/plugins/foo-plugin-v1/pom.xml +++ b/tests/plugins/foo-plugin-v1/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../.. foo-plugin-v1 diff --git a/tests/plugins/foo-plugin-v2/pom.xml b/tests/plugins/foo-plugin-v2/pom.xml index a36d85c8991..1ff59b8756d 100644 --- a/tests/plugins/foo-plugin-v2/pom.xml +++ b/tests/plugins/foo-plugin-v2/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../.. foo-plugin-v2 diff --git a/tests/plugins/global-property-change-plugin/pom.xml b/tests/plugins/global-property-change-plugin/pom.xml index 0c6a0e66467..77c68929610 100644 --- a/tests/plugins/global-property-change-plugin/pom.xml +++ b/tests/plugins/global-property-change-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 global-property-change-plugin diff --git a/tests/plugins/issue-filter-plugin/pom.xml b/tests/plugins/issue-filter-plugin/pom.xml index 87d06ef7a4d..6712d29b4eb 100644 --- a/tests/plugins/issue-filter-plugin/pom.xml +++ b/tests/plugins/issue-filter-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 issue-filter-plugin diff --git a/tests/plugins/l10n-fr-pack/pom.xml b/tests/plugins/l10n-fr-pack/pom.xml index f2a4bbd8048..87c1cf4f6ec 100644 --- a/tests/plugins/l10n-fr-pack/pom.xml +++ b/tests/plugins/l10n-fr-pack/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 l10n-fr-pack diff --git a/tests/plugins/license-plugin/pom.xml b/tests/plugins/license-plugin/pom.xml index f7360b491de..765065f88cc 100644 --- a/tests/plugins/license-plugin/pom.xml +++ b/tests/plugins/license-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 license-plugin diff --git a/tests/plugins/oauth2-auth-plugin/pom.xml b/tests/plugins/oauth2-auth-plugin/pom.xml index a10ac1c8bcd..fca7cd3bb59 100644 --- a/tests/plugins/oauth2-auth-plugin/pom.xml +++ b/tests/plugins/oauth2-auth-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 oauth2-auth-plugin diff --git a/tests/plugins/pom.xml b/tests/plugins/pom.xml index 7ce44f0d4df..062592dbf01 100644 --- a/tests/plugins/pom.xml +++ b/tests/plugins/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 ../../pom.xml org.sonarsource.sonarqube.tests diff --git a/tests/plugins/posttask-plugin/pom.xml b/tests/plugins/posttask-plugin/pom.xml index a5fb1a9f603..90438a5144d 100644 --- a/tests/plugins/posttask-plugin/pom.xml +++ b/tests/plugins/posttask-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 posttask-plugin diff --git a/tests/plugins/project-builder-plugin/pom.xml b/tests/plugins/project-builder-plugin/pom.xml index 295f87a9ce3..149af7e922a 100644 --- a/tests/plugins/project-builder-plugin/pom.xml +++ b/tests/plugins/project-builder-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 project-builder-plugin 1.0-SNAPSHOT diff --git a/tests/plugins/property-relocation-plugin/pom.xml b/tests/plugins/property-relocation-plugin/pom.xml index 6644c4b24c9..855f7af0b68 100644 --- a/tests/plugins/property-relocation-plugin/pom.xml +++ b/tests/plugins/property-relocation-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 property-relocation-plugin diff --git a/tests/plugins/property-sets-plugin/pom.xml b/tests/plugins/property-sets-plugin/pom.xml index 59aeff09f4e..ad2cdc9078c 100644 --- a/tests/plugins/property-sets-plugin/pom.xml +++ b/tests/plugins/property-sets-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 property-sets-plugin diff --git a/tests/plugins/security-plugin/pom.xml b/tests/plugins/security-plugin/pom.xml index 381a78273b3..7b847b55b46 100644 --- a/tests/plugins/security-plugin/pom.xml +++ b/tests/plugins/security-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 security-plugin diff --git a/tests/plugins/server-plugin/pom.xml b/tests/plugins/server-plugin/pom.xml index 42f8a345e72..95f85ca7113 100644 --- a/tests/plugins/server-plugin/pom.xml +++ b/tests/plugins/server-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 server-plugin diff --git a/tests/plugins/settings-encryption-plugin/pom.xml b/tests/plugins/settings-encryption-plugin/pom.xml index 607c2f4fffe..e7d29a16ec8 100644 --- a/tests/plugins/settings-encryption-plugin/pom.xml +++ b/tests/plugins/settings-encryption-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 settings-encryption-plugin 1.0-SNAPSHOT diff --git a/tests/plugins/settings-plugin/pom.xml b/tests/plugins/settings-plugin/pom.xml index f69b47932cb..c69b46cbd8b 100644 --- a/tests/plugins/settings-plugin/pom.xml +++ b/tests/plugins/settings-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 settings-plugin diff --git a/tests/plugins/sonar-fake-plugin/pom.xml b/tests/plugins/sonar-fake-plugin/pom.xml index 8246710c1ca..181d4b3c7eb 100644 --- a/tests/plugins/sonar-fake-plugin/pom.xml +++ b/tests/plugins/sonar-fake-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 sonar-fake-plugin diff --git a/tests/plugins/sonar-subcategories-plugin/pom.xml b/tests/plugins/sonar-subcategories-plugin/pom.xml index 62994d99436..137f6502717 100644 --- a/tests/plugins/sonar-subcategories-plugin/pom.xml +++ b/tests/plugins/sonar-subcategories-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 sonar-subcategories-plugin diff --git a/tests/plugins/ui-extensions-plugin/pom.xml b/tests/plugins/ui-extensions-plugin/pom.xml index 86d2cfdbcb1..817ff7c2bf9 100644 --- a/tests/plugins/ui-extensions-plugin/pom.xml +++ b/tests/plugins/ui-extensions-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 ui-extensions-plugin diff --git a/tests/plugins/wait-at-platform-level4-plugin/pom.xml b/tests/plugins/wait-at-platform-level4-plugin/pom.xml index 07d4196c888..c91ede3c9b9 100644 --- a/tests/plugins/wait-at-platform-level4-plugin/pom.xml +++ b/tests/plugins/wait-at-platform-level4-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 wait-at-platform-level4-plugin diff --git a/tests/plugins/ws-plugin/pom.xml b/tests/plugins/ws-plugin/pom.xml index 617a598718a..6c28fc2caef 100644 --- a/tests/plugins/ws-plugin/pom.xml +++ b/tests/plugins/ws-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-SNAPSHOT + 6.6-RC1 ws-plugin diff --git a/tests/pom.xml b/tests/pom.xml index f15b74f0fa3..2355c7f23d4 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -7,7 +7,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-SNAPSHOT + 6.6-RC1 org.sonarsource.sonarqube.tests -- cgit v1.2.3 From d1eef867e02c7402a4516fa2dd4d193a03eb2b7b Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 11 Oct 2017 07:05:59 +0200 Subject: Prepare for next development iteration --- plugins/sonar-xoo-plugin/pom.xml | 2 +- pom.xml | 2 +- server/pom.xml | 2 +- server/sonar-ce/pom.xml | 2 +- server/sonar-db-core/pom.xml | 2 +- server/sonar-db-dao/pom.xml | 2 +- server/sonar-db-migration/pom.xml | 2 +- server/sonar-db-testing/pom.xml | 2 +- server/sonar-main/pom.xml | 2 +- server/sonar-plugin-bridge/pom.xml | 2 +- server/sonar-process/pom.xml | 2 +- server/sonar-server/pom.xml | 2 +- server/sonar-web/pom.xml | 2 +- sonar-application/pom.xml | 2 +- sonar-check-api/pom.xml | 2 +- sonar-core/pom.xml | 2 +- sonar-duplications/pom.xml | 2 +- sonar-home/pom.xml | 2 +- sonar-markdown/pom.xml | 2 +- sonar-plugin-api-deps/pom.xml | 2 +- sonar-plugin-api/pom.xml | 2 +- sonar-scanner-engine-shaded/pom.xml | 2 +- sonar-scanner-engine/pom.xml | 2 +- sonar-scanner-protocol/pom.xml | 2 +- sonar-testing-harness/pom.xml | 2 +- sonar-ws/pom.xml | 2 +- tests/plugins/access-secured-props-plugin/pom.xml | 2 +- tests/plugins/backdating-customplugin/pom.xml | 2 +- tests/plugins/backdating-plugin-v1/pom.xml | 2 +- tests/plugins/backdating-plugin-v2/pom.xml | 2 +- tests/plugins/base-auth-plugin/pom.xml | 2 +- tests/plugins/batch-plugin/pom.xml | 2 +- tests/plugins/extension-lifecycle-plugin/pom.xml | 2 +- tests/plugins/fake-billing-plugin/pom.xml | 2 +- tests/plugins/fake-governance-plugin/pom.xml | 2 +- tests/plugins/foo-plugin-v1/pom.xml | 2 +- tests/plugins/foo-plugin-v2/pom.xml | 2 +- tests/plugins/global-property-change-plugin/pom.xml | 2 +- tests/plugins/issue-filter-plugin/pom.xml | 2 +- tests/plugins/l10n-fr-pack/pom.xml | 2 +- tests/plugins/license-plugin/pom.xml | 2 +- tests/plugins/oauth2-auth-plugin/pom.xml | 2 +- tests/plugins/pom.xml | 2 +- tests/plugins/posttask-plugin/pom.xml | 2 +- tests/plugins/project-builder-plugin/pom.xml | 2 +- tests/plugins/property-relocation-plugin/pom.xml | 2 +- tests/plugins/property-sets-plugin/pom.xml | 2 +- tests/plugins/security-plugin/pom.xml | 2 +- tests/plugins/server-plugin/pom.xml | 2 +- tests/plugins/settings-encryption-plugin/pom.xml | 2 +- tests/plugins/settings-plugin/pom.xml | 2 +- tests/plugins/sonar-fake-plugin/pom.xml | 2 +- tests/plugins/sonar-subcategories-plugin/pom.xml | 2 +- tests/plugins/ui-extensions-plugin/pom.xml | 2 +- tests/plugins/wait-at-platform-level4-plugin/pom.xml | 2 +- tests/plugins/ws-plugin/pom.xml | 2 +- tests/pom.xml | 2 +- 57 files changed, 57 insertions(+), 57 deletions(-) (limited to 'server/sonar-process') diff --git a/plugins/sonar-xoo-plugin/pom.xml b/plugins/sonar-xoo-plugin/pom.xml index 15d140f886a..50952554e47 100644 --- a/plugins/sonar-xoo-plugin/pom.xml +++ b/plugins/sonar-xoo-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../.. sonar-xoo-plugin diff --git a/pom.xml b/pom.xml index 59ea1200d2e..26b1752d56a 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ org.sonarsource.sonarqube sonarqube pom - 6.6-RC1 + 6.6-SNAPSHOT SonarQube http://www.sonarqube.org/ Open source platform for continuous inspection of code quality diff --git a/server/pom.xml b/server/pom.xml index 436f19f645c..bd0564d4620 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT server pom diff --git a/server/sonar-ce/pom.xml b/server/sonar-ce/pom.xml index 342d2e0b8c5..ca7bb7c1677 100644 --- a/server/sonar-ce/pom.xml +++ b/server/sonar-ce/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT .. sonar-ce diff --git a/server/sonar-db-core/pom.xml b/server/sonar-db-core/pom.xml index d9cf63617bc..55258bce31f 100644 --- a/server/sonar-db-core/pom.xml +++ b/server/sonar-db-core/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT sonar-db-core diff --git a/server/sonar-db-dao/pom.xml b/server/sonar-db-dao/pom.xml index 3c787ccf3fa..bec58980191 100644 --- a/server/sonar-db-dao/pom.xml +++ b/server/sonar-db-dao/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT sonar-db-dao diff --git a/server/sonar-db-migration/pom.xml b/server/sonar-db-migration/pom.xml index 1167ae3a25f..9447cf687fe 100644 --- a/server/sonar-db-migration/pom.xml +++ b/server/sonar-db-migration/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT sonar-db-migration diff --git a/server/sonar-db-testing/pom.xml b/server/sonar-db-testing/pom.xml index 8c82da82613..51f53cf694a 100644 --- a/server/sonar-db-testing/pom.xml +++ b/server/sonar-db-testing/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT sonar-db-testing diff --git a/server/sonar-main/pom.xml b/server/sonar-main/pom.xml index 59ab2074b0e..eba72bb7f62 100644 --- a/server/sonar-main/pom.xml +++ b/server/sonar-main/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT ../ diff --git a/server/sonar-plugin-bridge/pom.xml b/server/sonar-plugin-bridge/pom.xml index fad9c5b7fda..896695df61a 100644 --- a/server/sonar-plugin-bridge/pom.xml +++ b/server/sonar-plugin-bridge/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT .. sonar-plugin-bridge diff --git a/server/sonar-process/pom.xml b/server/sonar-process/pom.xml index 02c3af77154..00811e45e56 100644 --- a/server/sonar-process/pom.xml +++ b/server/sonar-process/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT ../ diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index 4f48dd974c4..4427ee35144 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT .. sonar-server diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml index 8363a1d68d8..841d23d929a 100644 --- a/server/sonar-web/pom.xml +++ b/server/sonar-web/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube server - 6.6-RC1 + 6.6-SNAPSHOT .. sonar-web diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index 5e682bd4ab9..515f206f3e8 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -7,7 +7,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-application diff --git a/sonar-check-api/pom.xml b/sonar-check-api/pom.xml index 667deb41a20..b00cb5629a5 100644 --- a/sonar-check-api/pom.xml +++ b/sonar-check-api/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT .. sonar-check-api diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index 2fba6db7b77..3e86dd4430e 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-core diff --git a/sonar-duplications/pom.xml b/sonar-duplications/pom.xml index 67c8561e2a6..80a99f34c80 100644 --- a/sonar-duplications/pom.xml +++ b/sonar-duplications/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-duplications diff --git a/sonar-home/pom.xml b/sonar-home/pom.xml index a43861f1efe..45b9ff688ac 100644 --- a/sonar-home/pom.xml +++ b/sonar-home/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-home diff --git a/sonar-markdown/pom.xml b/sonar-markdown/pom.xml index d37b2bfdfdf..03105a7839b 100644 --- a/sonar-markdown/pom.xml +++ b/sonar-markdown/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT .. diff --git a/sonar-plugin-api-deps/pom.xml b/sonar-plugin-api-deps/pom.xml index d45c243a8c9..071b1f5fc64 100644 --- a/sonar-plugin-api-deps/pom.xml +++ b/sonar-plugin-api-deps/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-plugin-api-deps diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index 7559c1f8152..0c0f38e0731 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-plugin-api diff --git a/sonar-scanner-engine-shaded/pom.xml b/sonar-scanner-engine-shaded/pom.xml index 3bdf9916f7a..6e02b53b553 100644 --- a/sonar-scanner-engine-shaded/pom.xml +++ b/sonar-scanner-engine-shaded/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-scanner-engine-shaded diff --git a/sonar-scanner-engine/pom.xml b/sonar-scanner-engine/pom.xml index d817ab4dd38..580ee0095ff 100644 --- a/sonar-scanner-engine/pom.xml +++ b/sonar-scanner-engine/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-scanner-engine diff --git a/sonar-scanner-protocol/pom.xml b/sonar-scanner-protocol/pom.xml index c44a2b3a89d..9d6ef5b3dc6 100644 --- a/sonar-scanner-protocol/pom.xml +++ b/sonar-scanner-protocol/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-scanner-protocol diff --git a/sonar-testing-harness/pom.xml b/sonar-testing-harness/pom.xml index 30b95aa6a80..e3815fe3652 100644 --- a/sonar-testing-harness/pom.xml +++ b/sonar-testing-harness/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-testing-harness jar diff --git a/sonar-ws/pom.xml b/sonar-ws/pom.xml index a410240072b..8b936256775 100644 --- a/sonar-ws/pom.xml +++ b/sonar-ws/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT sonar-ws diff --git a/tests/plugins/access-secured-props-plugin/pom.xml b/tests/plugins/access-secured-props-plugin/pom.xml index 5d2dd44d3a6..4a4bb2e9382 100644 --- a/tests/plugins/access-secured-props-plugin/pom.xml +++ b/tests/plugins/access-secured-props-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT access-secured-props-plugin diff --git a/tests/plugins/backdating-customplugin/pom.xml b/tests/plugins/backdating-customplugin/pom.xml index cb3e8633928..8371451ba88 100644 --- a/tests/plugins/backdating-customplugin/pom.xml +++ b/tests/plugins/backdating-customplugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../.. backdating-customplugin diff --git a/tests/plugins/backdating-plugin-v1/pom.xml b/tests/plugins/backdating-plugin-v1/pom.xml index 12d5130bd60..85a241daf31 100644 --- a/tests/plugins/backdating-plugin-v1/pom.xml +++ b/tests/plugins/backdating-plugin-v1/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../.. backdating-plugin-v1 diff --git a/tests/plugins/backdating-plugin-v2/pom.xml b/tests/plugins/backdating-plugin-v2/pom.xml index 657808c93fd..59adfffc20d 100644 --- a/tests/plugins/backdating-plugin-v2/pom.xml +++ b/tests/plugins/backdating-plugin-v2/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../.. backdating-plugin-v2 diff --git a/tests/plugins/base-auth-plugin/pom.xml b/tests/plugins/base-auth-plugin/pom.xml index 2a3418c284e..637a45f2b2b 100644 --- a/tests/plugins/base-auth-plugin/pom.xml +++ b/tests/plugins/base-auth-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT base-auth-plugin diff --git a/tests/plugins/batch-plugin/pom.xml b/tests/plugins/batch-plugin/pom.xml index 90487e9f28c..6f3c4c40d30 100644 --- a/tests/plugins/batch-plugin/pom.xml +++ b/tests/plugins/batch-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT batch-plugin diff --git a/tests/plugins/extension-lifecycle-plugin/pom.xml b/tests/plugins/extension-lifecycle-plugin/pom.xml index 5d3e5c5b1a8..dce5ef4127d 100644 --- a/tests/plugins/extension-lifecycle-plugin/pom.xml +++ b/tests/plugins/extension-lifecycle-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT extension-lifecycle-plugin 1.0-SNAPSHOT diff --git a/tests/plugins/fake-billing-plugin/pom.xml b/tests/plugins/fake-billing-plugin/pom.xml index 9eacb0a1f73..17fd7f0b177 100644 --- a/tests/plugins/fake-billing-plugin/pom.xml +++ b/tests/plugins/fake-billing-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT fake-billing-plugin diff --git a/tests/plugins/fake-governance-plugin/pom.xml b/tests/plugins/fake-governance-plugin/pom.xml index 5ed510143fc..cf2b24a80c7 100644 --- a/tests/plugins/fake-governance-plugin/pom.xml +++ b/tests/plugins/fake-governance-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT fake-governance-plugin diff --git a/tests/plugins/foo-plugin-v1/pom.xml b/tests/plugins/foo-plugin-v1/pom.xml index d9a5822fa17..2d84ea23660 100644 --- a/tests/plugins/foo-plugin-v1/pom.xml +++ b/tests/plugins/foo-plugin-v1/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../.. foo-plugin-v1 diff --git a/tests/plugins/foo-plugin-v2/pom.xml b/tests/plugins/foo-plugin-v2/pom.xml index 1ff59b8756d..a36d85c8991 100644 --- a/tests/plugins/foo-plugin-v2/pom.xml +++ b/tests/plugins/foo-plugin-v2/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../.. foo-plugin-v2 diff --git a/tests/plugins/global-property-change-plugin/pom.xml b/tests/plugins/global-property-change-plugin/pom.xml index 77c68929610..0c6a0e66467 100644 --- a/tests/plugins/global-property-change-plugin/pom.xml +++ b/tests/plugins/global-property-change-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT global-property-change-plugin diff --git a/tests/plugins/issue-filter-plugin/pom.xml b/tests/plugins/issue-filter-plugin/pom.xml index 6712d29b4eb..87d06ef7a4d 100644 --- a/tests/plugins/issue-filter-plugin/pom.xml +++ b/tests/plugins/issue-filter-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT issue-filter-plugin diff --git a/tests/plugins/l10n-fr-pack/pom.xml b/tests/plugins/l10n-fr-pack/pom.xml index 87c1cf4f6ec..f2a4bbd8048 100644 --- a/tests/plugins/l10n-fr-pack/pom.xml +++ b/tests/plugins/l10n-fr-pack/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT l10n-fr-pack diff --git a/tests/plugins/license-plugin/pom.xml b/tests/plugins/license-plugin/pom.xml index 765065f88cc..f7360b491de 100644 --- a/tests/plugins/license-plugin/pom.xml +++ b/tests/plugins/license-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT license-plugin diff --git a/tests/plugins/oauth2-auth-plugin/pom.xml b/tests/plugins/oauth2-auth-plugin/pom.xml index fca7cd3bb59..a10ac1c8bcd 100644 --- a/tests/plugins/oauth2-auth-plugin/pom.xml +++ b/tests/plugins/oauth2-auth-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT oauth2-auth-plugin diff --git a/tests/plugins/pom.xml b/tests/plugins/pom.xml index 062592dbf01..7ce44f0d4df 100644 --- a/tests/plugins/pom.xml +++ b/tests/plugins/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT ../../pom.xml org.sonarsource.sonarqube.tests diff --git a/tests/plugins/posttask-plugin/pom.xml b/tests/plugins/posttask-plugin/pom.xml index 90438a5144d..a5fb1a9f603 100644 --- a/tests/plugins/posttask-plugin/pom.xml +++ b/tests/plugins/posttask-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT posttask-plugin diff --git a/tests/plugins/project-builder-plugin/pom.xml b/tests/plugins/project-builder-plugin/pom.xml index 149af7e922a..295f87a9ce3 100644 --- a/tests/plugins/project-builder-plugin/pom.xml +++ b/tests/plugins/project-builder-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT project-builder-plugin 1.0-SNAPSHOT diff --git a/tests/plugins/property-relocation-plugin/pom.xml b/tests/plugins/property-relocation-plugin/pom.xml index 855f7af0b68..6644c4b24c9 100644 --- a/tests/plugins/property-relocation-plugin/pom.xml +++ b/tests/plugins/property-relocation-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT property-relocation-plugin diff --git a/tests/plugins/property-sets-plugin/pom.xml b/tests/plugins/property-sets-plugin/pom.xml index ad2cdc9078c..59aeff09f4e 100644 --- a/tests/plugins/property-sets-plugin/pom.xml +++ b/tests/plugins/property-sets-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT property-sets-plugin diff --git a/tests/plugins/security-plugin/pom.xml b/tests/plugins/security-plugin/pom.xml index 7b847b55b46..381a78273b3 100644 --- a/tests/plugins/security-plugin/pom.xml +++ b/tests/plugins/security-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT security-plugin diff --git a/tests/plugins/server-plugin/pom.xml b/tests/plugins/server-plugin/pom.xml index 95f85ca7113..42f8a345e72 100644 --- a/tests/plugins/server-plugin/pom.xml +++ b/tests/plugins/server-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT server-plugin diff --git a/tests/plugins/settings-encryption-plugin/pom.xml b/tests/plugins/settings-encryption-plugin/pom.xml index e7d29a16ec8..607c2f4fffe 100644 --- a/tests/plugins/settings-encryption-plugin/pom.xml +++ b/tests/plugins/settings-encryption-plugin/pom.xml @@ -4,7 +4,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT settings-encryption-plugin 1.0-SNAPSHOT diff --git a/tests/plugins/settings-plugin/pom.xml b/tests/plugins/settings-plugin/pom.xml index c69b46cbd8b..f69b47932cb 100644 --- a/tests/plugins/settings-plugin/pom.xml +++ b/tests/plugins/settings-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT settings-plugin diff --git a/tests/plugins/sonar-fake-plugin/pom.xml b/tests/plugins/sonar-fake-plugin/pom.xml index 181d4b3c7eb..8246710c1ca 100644 --- a/tests/plugins/sonar-fake-plugin/pom.xml +++ b/tests/plugins/sonar-fake-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT sonar-fake-plugin diff --git a/tests/plugins/sonar-subcategories-plugin/pom.xml b/tests/plugins/sonar-subcategories-plugin/pom.xml index 137f6502717..62994d99436 100644 --- a/tests/plugins/sonar-subcategories-plugin/pom.xml +++ b/tests/plugins/sonar-subcategories-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT sonar-subcategories-plugin diff --git a/tests/plugins/ui-extensions-plugin/pom.xml b/tests/plugins/ui-extensions-plugin/pom.xml index 817ff7c2bf9..86d2cfdbcb1 100644 --- a/tests/plugins/ui-extensions-plugin/pom.xml +++ b/tests/plugins/ui-extensions-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT ui-extensions-plugin diff --git a/tests/plugins/wait-at-platform-level4-plugin/pom.xml b/tests/plugins/wait-at-platform-level4-plugin/pom.xml index c91ede3c9b9..07d4196c888 100644 --- a/tests/plugins/wait-at-platform-level4-plugin/pom.xml +++ b/tests/plugins/wait-at-platform-level4-plugin/pom.xml @@ -6,7 +6,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT wait-at-platform-level4-plugin diff --git a/tests/plugins/ws-plugin/pom.xml b/tests/plugins/ws-plugin/pom.xml index 6c28fc2caef..617a598718a 100644 --- a/tests/plugins/ws-plugin/pom.xml +++ b/tests/plugins/ws-plugin/pom.xml @@ -5,7 +5,7 @@ org.sonarsource.sonarqube.tests plugins - 6.6-RC1 + 6.6-SNAPSHOT ws-plugin diff --git a/tests/pom.xml b/tests/pom.xml index 2355c7f23d4..f15b74f0fa3 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -7,7 +7,7 @@ org.sonarsource.sonarqube sonarqube - 6.6-RC1 + 6.6-SNAPSHOT org.sonarsource.sonarqube.tests -- cgit v1.2.3