]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4388 Move from Sonar to SonarQube
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 8 Jul 2013 13:07:35 +0000 (15:07 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Mon, 8 Jul 2013 13:07:35 +0000 (15:07 +0200)
42 files changed:
plugins/sonar-core-plugin/pom.xml
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
plugins/sonar-cpd-plugin/pom.xml
plugins/sonar-cpd-plugin/src/main/java/org/sonar/plugins/cpd/CpdPlugin.java
plugins/sonar-dbcleaner-plugin/pom.xml
plugins/sonar-design-plugin/pom.xml
plugins/sonar-email-notifications-plugin/pom.xml
plugins/sonar-l10n-en-plugin/pom.xml
plugins/sonar-maven-batch-plugin/pom.xml
plugins/sonar-maven-batch-plugin/src/main/java/org/sonar/plugins/maven/MavenProjectConverter.java
pom.xml
sonar-application/pom.xml
sonar-batch-maven-compat/pom.xml
sonar-batch/pom.xml
sonar-batch/src/main/java/org/sonar/batch/bootstrap/DatabaseCompatibility.java
sonar-batch/src/main/java/org/sonar/batch/index/DefaultIndex.java
sonar-batch/src/test/java/org/sonar/batch/bootstrap/DatabaseCompatibilityTest.java
sonar-channel/pom.xml
sonar-check-api/pom.xml
sonar-colorizer/pom.xml
sonar-colorizer/src/main/java/org/sonar/colorizer/HtmlDecorator.java
sonar-core/pom.xml
sonar-deprecated/pom.xml
sonar-duplications/pom.xml
sonar-graph/pom.xml
sonar-home/pom.xml
sonar-java-api/pom.xml
sonar-markdown/pom.xml
sonar-maven-plugin/pom.xml
sonar-maven3-plugin/pom.xml
sonar-plugin-api/pom.xml
sonar-server/pom.xml
sonar-server/src/main/java/org/sonar/server/platform/DefaultServerFileSystem.java
sonar-server/src/main/java/org/sonar/server/platform/Platform.java
sonar-server/src/main/java/org/sonar/server/platform/ServerImpl.java
sonar-server/src/main/java/org/sonar/server/platform/SonarHome.java
sonar-server/src/main/java/org/sonar/server/plugins/PluginDeployer.java
sonar-server/src/test/java/org/sonar/server/platform/ServerImplTest.java
sonar-server/src/test/java/org/sonar/server/plugins/PluginDeployerTest.java
sonar-squid/pom.xml
sonar-testing-harness/pom.xml
sonar-ws-client/pom.xml

index f816e1134da971f2af5c9f6070fe843c0b78f65a..dd2ef0d56cd43db2eef64debe3bf291951e7af52 100644 (file)
@@ -10,7 +10,7 @@
   <groupId>org.codehaus.sonar.plugins</groupId>
   <artifactId>sonar-core-plugin</artifactId>
   <packaging>sonar-plugin</packaging>
-  <name>Sonar :: Plugins :: Core</name>
+  <name>SonarQube :: Plugins :: Core</name>
 
   <dependencies>
     <dependency>
index 97122719ccaa3c321928b60836ca5ba6880e2105..84d6b162235cfc9ed4eacc86561267b3ac47ddb8 100644 (file)
@@ -57,7 +57,7 @@ import java.util.List;
     key = CoreProperties.SERVER_BASE_URL,
     defaultValue = CoreProperties.SERVER_BASE_URL_DEFAULT_VALUE,
     name = "Server base URL",
-    description = "HTTP URL of this Sonar server, such as <i>http://yourhost.yourdomain/sonar</i>. This value is used i.e. to create links in emails.",
+    description = "HTTP URL of this SonarQube server, such as <i>http://yourhost.yourdomain/sonar</i>. This value is used i.e. to create links in emails.",
     project = false,
     global = true,
     category = CoreProperties.CATEGORY_GENERAL),
@@ -170,7 +170,7 @@ import java.util.List;
     key = CoreProperties.CORE_FORCE_AUTHENTICATION_PROPERTY,
     defaultValue = "" + CoreProperties.CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE,
     name = "Force user authentication",
-    description = "Forcing user authentication stops un-logged users to access Sonar.",
+    description = "Forcing user authentication stops un-logged users to access SonarQube.",
     project = false,
     global = true,
     category = CoreProperties.CATEGORY_SECURITY,
index 2527d3d7bccf62806a1e952ed69a3ba5b9ee0c1c..3085f5fb1352a5911c31cadb3548c27e687bfcac 100644 (file)
@@ -9,7 +9,7 @@
   </parent>
   <groupId>org.codehaus.sonar.plugins</groupId>
   <artifactId>sonar-cpd-plugin</artifactId>
-  <name>Sonar :: Plugins :: CPD</name>
+  <name>SonarQube :: Plugins :: CPD</name>
   <packaging>sonar-plugin</packaging>
   <description>Find duplicated source code within project.</description>
 
index ba79993d593400ca8ef6f484dfa0c47cbe6ca96e..72d474afbf0f5f854cec6d663a984ed0e4e39d3e 100644 (file)
@@ -38,7 +38,7 @@ public final class CpdPlugin extends SonarPlugin {
       PropertyDefinition.builder(CoreProperties.CPD_CROSS_RPOJECT)
         .defaultValue(CoreProperties.CPD_CROSS_RPOJECT_DEFAULT_VALUE + "")
         .name("Cross project duplication detection")
-        .description("SonarQube supports the detection of cross project duplications. Activating this property will slightly increase each Sonar analysis time.")
+        .description("SonarQube supports the detection of cross project duplications. Activating this property will slightly increase each SonarQube analysis time.")
         .onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
         .category(CoreProperties.CATEGORY_DUPLICATIONS)
         .type(PropertyType.BOOLEAN)
index 10be5ff686c9743b40d25311f0acea0a365bb050..ce80897a12b4811eb65992579f13ca2adbd84c25 100644 (file)
@@ -11,7 +11,7 @@
   <artifactId>sonar-dbcleaner-plugin</artifactId>
   <packaging>sonar-plugin</packaging>
 
-  <name>Sonar :: Plugins :: Database Cleaner</name>
+  <name>SonarQube :: Plugins :: Database Cleaner</name>
   <description>Optimizes database performances by removing old and useless data.</description>
 
   <dependencies>
index 06ca7411bb3bfefcd463029951477e215b02152d..fa7e98d3d267fdd2a95c418468027396b00e2115 100644 (file)
@@ -10,7 +10,7 @@
   <groupId>org.codehaus.sonar.plugins</groupId>
   <artifactId>sonar-design-plugin</artifactId>
   <packaging>sonar-plugin</packaging>
-  <name>Sonar :: Plugins :: Design</name>
+  <name>SonarQube :: Plugins :: Design</name>
 
   <dependencies>
     <dependency>
index b1f2666884481c49ac71038089c30d8819ac93fc..74f2115333da78e96d13cb8640210d2add708c1b 100644 (file)
@@ -13,7 +13,7 @@
   <artifactId>sonar-email-notifications-plugin</artifactId>
   <packaging>sonar-plugin</packaging>
 
-  <name>Sonar :: Plugins :: Email Notifications</name>
+  <name>SonarQube :: Plugins :: Email Notifications</name>
   <description>Email Notifications</description>
 
   <dependencies>
index 94f1c299b5f38b2403bc08bddc4ea4bdde462d0d..04eaf6fabb432cb995f055d5a0ea56a22863221a 100644 (file)
@@ -12,7 +12,7 @@
   <groupId>org.codehaus.sonar.plugins</groupId>
   <artifactId>sonar-l10n-en-plugin</artifactId>
   <packaging>sonar-plugin</packaging>
-  <name>Sonar :: Plugins :: English Pack</name>
+  <name>SonarQube :: Plugins :: English Pack</name>
 
   <dependencies>
     <dependency>
index 878b6a53c812e9d08941b7befe6c535a47ef7770..d467aa243f9167df5660650c2d0e99ae41f72db0 100644 (file)
@@ -7,12 +7,12 @@
     <version>3.7-SNAPSHOT</version>
     <relativePath>../..</relativePath>
   </parent>
-  
+
   <groupId>org.codehaus.sonar.plugins</groupId>
   <artifactId>sonar-maven-batch-plugin</artifactId>
   <packaging>sonar-plugin</packaging>
-  <name>Sonar :: Maven Batch Plugin</name>
-  
+  <name>SonarQube :: Maven Batch Plugin</name>
+
   <properties>
     <maven.version>3.0</maven.version>
   </properties>
@@ -41,7 +41,7 @@
       <version>${maven.version}</version>
       <scope>provided</scope>
     </dependency>
-    
+
     <!-- unit tests -->
     <dependency>
       <groupId>org.codehaus.sonar</groupId>
@@ -49,7 +49,7 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
-  
+
   <build>
     <plugins>
 
index e950325095eae59a53723be392e8e1045662981c..ad7ad3bb6641549252ee55fe00f8859776fa9118 100644 (file)
@@ -48,7 +48,7 @@ import java.util.Map;
 public class MavenProjectConverter implements TaskExtension {
 
   private static final String UNABLE_TO_DETERMINE_PROJECT_STRUCTURE_EXCEPTION_MESSAGE = "Unable to determine structure of project." +
-    " Probably you use Maven Advanced Reactor Options, which is not supported by Sonar and should not be used.";
+    " Probably you use Maven Advanced Reactor Options, which is not supported by SonarQube and should not be used.";
 
   public ProjectDefinition configure(List<MavenProject> poms, MavenProject root) {
     // projects by canonical path to pom.xml
diff --git a/pom.xml b/pom.xml
index b31cf98c1e1e6a73051434d1feae6b412c0f91c7..4139214c30d845d4883410118f8a87dd81c1f030 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
   <artifactId>sonar</artifactId>
   <packaging>pom</packaging>
   <version>3.7-SNAPSHOT</version>
-  <name>Sonar</name>
+  <name>SonarQube</name>
   <url>http://www.sonarsource.org/</url>
   <description>Open source platform for continuous inspection of code quality</description>
 
index 78c0870946e13a8f08e4269641d03b06e9070e9e..75ef4857f85968b1393feb0afd2b770bfc7b6475 100644 (file)
@@ -11,7 +11,7 @@
   <artifactId>sonar-application</artifactId>
   <packaging>jar</packaging>
 
-  <name>Sonar :: Application</name>
+  <name>SonarQube :: Application</name>
   <description>Package the standalone distribution</description>
 
   <dependencies>
index 3454afe8aae19571221894eae00d28e8f95eae91..2526b90d8fc843eabdb5584eb0376fdfb3447a5d 100644 (file)
@@ -9,7 +9,7 @@
   </parent>
 
   <artifactId>sonar-batch-maven-compat</artifactId>
-  <name>Sonar :: Batch Maven Compat</name>
+  <name>SonarQube :: Batch Maven Compat</name>
   <description>Compatibility layer, which provides MavenProject for non-Maven environments.</description>
 
   <dependencies>
@@ -43,7 +43,7 @@
       </plugin>
     </plugins>
   </build>
-  
+
   <profiles>
     <profile>
       <id>release</id>
index ece068c843ceb8e7deea1c0fcb17bc4877c8831a..51dfdfed2702a9d38f9e1f06f2fe793055f0781a 100644 (file)
@@ -9,7 +9,7 @@
 
   <groupId>org.codehaus.sonar</groupId>
   <artifactId>sonar-batch</artifactId>
-  <name>Sonar :: Batch</name>
+  <name>SonarQube :: Batch</name>
 
   <dependencies>
     <dependency>
index 34b6f60d9bf591b399e3c4b8bad8f5f19c504977..6b373735b2a6bad0ef1d1261dc13938ff71d4663 100644 (file)
@@ -66,7 +66,7 @@ public class DatabaseCompatibility implements BatchComponent {
   private void checkDatabaseStatus() {
     DatabaseVersion.Status status = version.getStatus();
     if (status == DatabaseVersion.Status.REQUIRES_DOWNGRADE) {
-      throw new BadDatabaseVersion("Database relates to a more recent version of Sonar. Please check your settings (JDBC settings, version of Maven plugin)");
+      throw new BadDatabaseVersion("Database relates to a more recent version of SonarQube. Please check your settings (JDBC settings, version of Maven plugin)");
     }
     if (status == DatabaseVersion.Status.REQUIRES_UPGRADE) {
       throw new BadDatabaseVersion("Database must be upgraded. Please browse " + server.getURL() + "/setup");
index 650462ca6ba70a1e99e6008562e05a3047c4eb36..40a2b99c77392a599ad78626fe877326c1f6fd41 100644 (file)
@@ -557,12 +557,12 @@ public class DefaultIndex extends SonarIndex {
         if (lock.isFailWhenLocked()) {
           throw new ResourceNotIndexedException(resource);
         }
-        LOG.warn("Resource will be ignored in next Sonar versions, index is locked: " + resource);
+        LOG.warn("Resource will be ignored in next SonarQube versions, index is locked: " + resource);
       }
       if (Scopes.isDirectory(resource) || Scopes.isFile(resource)) {
         bucket = doIndex(resource);
       } else if (!lock.isLocked()) {
-        LOG.warn("Resource will be ignored in next Sonar versions, it must be indexed before adding data: " + resource);
+        LOG.warn("Resource will be ignored in next SonarQube versions, it must be indexed before adding data: " + resource);
       }
     }
     return bucket;
index 1fabd1cf8569c2ac51233483c75571df0c696b10..43677fa9ce4c51f6f535755cfd250e6d4955bbe0 100644 (file)
@@ -61,7 +61,7 @@ public class DatabaseCompatibilityTest {
     when(databaseVersion.getStatus()).thenReturn(DatabaseVersion.Status.REQUIRES_DOWNGRADE);
 
     thrown.expect(BadDatabaseVersion.class);
-    thrown.expectMessage("Database relates to a more recent version of Sonar. Please check your settings (JDBC settings, version of Maven plugin)");
+    thrown.expectMessage("Database relates to a more recent version of SonarQube. Please check your settings (JDBC settings, version of Maven plugin)");
 
     new DatabaseCompatibility(databaseVersion, server, settings).start();
   }
index 1323297d8dd666bc0dfc18c971770ad2d5580a4b..c3e7b427b4efcea2f7eb0500cb53175b763ddb69 100644 (file)
@@ -11,7 +11,7 @@
 
   <artifactId>sonar-channel</artifactId>
 
-  <name>Sonar :: Channel</name>
+  <name>SonarQube :: Channel</name>
   <description>Code Channel</description>
 
   <dependencies>
index 77c9d917908e45385b2fefee5c069f21a82d2296..a560fb73c4b8cecac000b5383d4ab720d4b3e15c 100644 (file)
@@ -8,7 +8,7 @@
     <relativePath>..</relativePath>
   </parent>
   <artifactId>sonar-check-api</artifactId>
-  <name>Sonar :: Check API</name>
+  <name>SonarQube :: Check API</name>
   <description>Check API</description>
 
   <dependencies>
index 4e61dc7e2c570404a7c973734ad47e394c790368..665b86b09e776bdaa35ebf595599799a191d5195 100644 (file)
@@ -11,7 +11,7 @@
 
   <artifactId>sonar-colorizer</artifactId>
 
-  <name>Sonar :: Code Colorizer</name>
+  <name>SonarQube :: Code Colorizer</name>
   <description>Code syntax highlighter</description>
 
   <dependencies>
index 60939b34f16f0e1efc8b80d7513633e10019d87f..1090700f6a8bb0c679f5d4a734c3781e9dc8413d 100644 (file)
@@ -95,7 +95,7 @@ public class HtmlDecorator extends Tokenizer {
       return new String(ByteStreams.toByteArray(input));
 
     } catch (IOException e) {
-      throw new SynhtaxHighlightingException("Sonar Colorizer CSS file not found: " + CSS_PATH, e);
+      throw new SynhtaxHighlightingException("SonarQube Colorizer CSS file not found: " + CSS_PATH, e);
 
     } finally {
       Closeables.closeQuietly(input);
index 43f57d21bbe6ecde0199c017269f712acab4c75e..de760e01b1207bd0f00144f47734f2c65cddc4b4 100644 (file)
@@ -10,7 +10,7 @@
 
   <artifactId>sonar-core</artifactId>
 
-  <name>Sonar :: Core</name>
+  <name>SonarQube :: Core</name>
   <description>Core components shared to batch and server</description>
 
   <dependencies>
 
     <!--
          JDBC drivers for MyBatis integration tests.
-         They can't be moved to the profile run-mybatis-its because 
+         They can't be moved to the profile run-mybatis-its because
     -->
     <dependency>
       <groupId>mysql</groupId>
index 2ea6182a26ef992d6f574ac6c519724c60165a22..79797b29eb8404cef9410cacda798151e6a8d4e8 100644 (file)
@@ -7,7 +7,7 @@
     <version>3.7-SNAPSHOT</version>
   </parent>
   <artifactId>sonar-deprecated</artifactId>
-  <name>Sonar :: Deprecated</name>
+  <name>SonarQube :: Deprecated</name>
 
   <dependencies>
     <dependency>
index 7ccbbc1996241ea75d434fec88fd5a7a042203ed..5f1e1b09cf551d04be25e1a8916d33ea457c322c 100644 (file)
@@ -9,7 +9,7 @@
 
   <artifactId>sonar-duplications</artifactId>
 
-  <name>Sonar :: Duplications</name>
+  <name>SonarQube :: Duplications</name>
   <description>Detect duplicated code</description>
 
   <properties>
index f93bea3803713b5cc97395c6eabca308755d5bd0..84594f0c540797dc2a546c18f7830cb46a5ffaad 100644 (file)
@@ -10,7 +10,7 @@
   <groupId>org.codehaus.sonar</groupId>
   <artifactId>sonar-graph</artifactId>
   <packaging>jar</packaging>
-  <name>Sonar :: Graph</name>
+  <name>SonarQube :: Graph</name>
 
   <dependencies>
     <dependency>
@@ -37,4 +37,4 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+</project>
index 32d2528f92cc822384e5b148e60ea790b23709b1..6772e786cd62d5034191facfc7d9e0b92324340b 100644 (file)
@@ -10,7 +10,7 @@
 
   <artifactId>sonar-home</artifactId>
 
-  <name>Sonar :: Home</name>
+  <name>SonarQube :: Home</name>
   <description>Access the user home directory that contains cache of files</description>
 
   <dependencies>
index 060ef6845e85f1f0e49948fc4be45f40d0bd97e4..05a7cf938d132a0b5ea2ea34b485d2be98275a14 100644 (file)
@@ -7,7 +7,7 @@
     <version>3.7-SNAPSHOT</version>
   </parent>
   <artifactId>sonar-java-api</artifactId>
-  <name>Sonar :: Java API</name>
+  <name>SonarQube :: Java API</name>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.sonar</groupId>
index 72ae9989f82fbcc780a021b3bed13db2a82f721c..a026d2999e69c2a113ab324da6e1dd1d3611b178 100644 (file)
@@ -10,7 +10,7 @@
   </parent>
 
   <artifactId>sonar-markdown</artifactId>
-  <name>Sonar :: Markdown</name>
+  <name>SonarQube :: Markdown</name>
 
   <dependencies>
     <dependency>
index e6136ee79d87a797ab7d9744db4960f6a4c68976..f4cdd7cd1a1614068df0cdf2e06e3a8f452a9907 100644 (file)
@@ -8,7 +8,7 @@
   </parent>
   <artifactId>sonar-maven-plugin</artifactId>
   <packaging>maven-plugin</packaging>
-  <name>Sonar :: Maven2 Plugin</name>
+  <name>SonarQube :: Maven2 Plugin</name>
 
   <dependencies>
     <dependency>
index 18dd0a9c87eb92f1ee8bd20817b3a915fab7fd50..260d14786ba96ebe10066634fb6c824699d1f4e4 100644 (file)
@@ -8,12 +8,12 @@
   </parent>
   <artifactId>sonar-maven3-plugin</artifactId>
   <packaging>pom</packaging>
-  <name>Sonar :: Maven3 Plugin</name>
+  <name>SonarQube :: Maven3 Plugin</name>
   <!-- Since Sonar 3.7 there is no more difference between Maven 2 and Maven 3 so relocate to Maven 2 plugin to avoid duplication -->
   <distributionManagement>
     <relocation>
       <artifactId>sonar-maven-plugin</artifactId>
     </relocation>
   </distributionManagement>
-  
+
 </project>
index 24b720348248fa24f0270c8b5d7473e8d0f19e48..2e1222b217a6b4afd067061207afcfadd58eeff9 100644 (file)
@@ -11,7 +11,7 @@
   <artifactId>sonar-plugin-api</artifactId>
   <packaging>jar</packaging>
 
-  <name>Sonar :: Plugin API</name>
+  <name>SonarQube :: Plugin API</name>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.sonar</groupId>
index bd83907bd0c430662814fad3db7bd0e98e784877..da94022292ce41ee6c78ea2306b9b6e2d39865e0 100644 (file)
@@ -8,7 +8,7 @@
   </parent>
   <artifactId>sonar-server</artifactId>
   <packaging>war</packaging>
-  <name>Sonar :: Server</name>
+  <name>SonarQube :: Server</name>
 
   <dependencies>
     <dependency>
index c9eca01a0f64dc4e2eedb98623baa88312ae4fcb..7d2aa83476a7aafe640f4de02f366437bc428935 100644 (file)
@@ -69,9 +69,9 @@ public class DefaultServerFileSystem implements ServerFileSystem {
   }
 
   public void start() {
-    LOGGER.info("Sonar home: " + homeDir.getAbsolutePath());
+    LOGGER.info("SonarQube home: " + homeDir.getAbsolutePath());
     if (!homeDir.isDirectory() || !homeDir.exists()) {
-      throw new IllegalStateException("Sonar home directory does not exist");
+      throw new IllegalStateException("SonarQube home directory does not exist");
     }
 
     if (deployDir == null) {
index be04a975fb38c53ed2bf10858f9be9354ee4d43d..32a395d99ebea2f71139afe455927c21c5178404 100644 (file)
@@ -352,7 +352,7 @@ public final class Platform {
         started = false;
         profiler.stop();
       } catch (Exception e) {
-        LoggerFactory.getLogger(getClass()).debug("Fail to stop Sonar - ignored", e);
+        LoggerFactory.getLogger(getClass()).debug("Fail to stop SonarQube - ignored", e);
       }
     }
   }
index 5b8385e7eb66bc6b5d9db8d3db1875978c87a895..cad0aa6aa19f984c910a5e51883faf0e10017414 100644 (file)
@@ -66,10 +66,10 @@ public final class ServerImpl extends Server {
       implementationBuild = read(buildProperties).getProperty("Implementation-Build");
 
       if (StringUtils.isBlank(version)) {
-        throw new IllegalStateException("Unknown Sonar version");
+        throw new IllegalStateException("Unknown SonarQube version");
       }
 
-      LOG.info("Sonar {}", Joiner.on(" / ").skipNulls().join("Server", version, implementationBuild));
+      LOG.info("SonarQube {}", Joiner.on(" / ").skipNulls().join("Server", version, implementationBuild));
 
     } catch (IOException e) {
       throw new IllegalStateException("Can not load metadata", e);
index a6472e9d81925c469e583ea3b6a33eecc6bcb57a..4d1b9de91bb5743ee92e02a27ebf9b2f4fac0e34 100644 (file)
@@ -36,7 +36,7 @@ import java.util.Properties;
  *   <li>environment variable SONAR_HOME</li>
  *   <li>property SONAR_HOME in the file WEB-INF/classes/sonar-war.properties</li>
  * </ol>
- * 
+ *
  * @since 2.12
  */
 final class SonarHome {
@@ -68,7 +68,7 @@ final class SonarHome {
     }
 
     if (StringUtils.isBlank(value)) {
-      throw new IllegalStateException("Sonar value is not defined. " +
+      throw new IllegalStateException("SonarQube value is not defined. " +
           "Please set the environment variable/system property " + PROPERTY + " or edit the file WEB-INF/classes/sonar-war.properties");
     }
 
index be8670d75fea339d8e385a535dbc2561c6e727a1..7a0f57f3d21853ce0e332cfdb91fdebb1965a4db 100644 (file)
@@ -200,7 +200,7 @@ public class PluginDeployer implements ServerComponent {
     LOG.info("Deploy plugin {}", Joiner.on(" / ").skipNulls().join(plugin.getName(), plugin.getVersion(), plugin.getImplementationBuild()));
 
     Preconditions.checkState(plugin.isCompatibleWith(server.getVersion()),
-        "Plugin %s needs a more recent version of Sonar than %s. At least %s is expected",
+        "Plugin %s needs a more recent version of SonarQube than %s. At least %s is expected",
         plugin.getKey(), server.getVersion(), plugin.getSonarVersion());
 
     try {
index 5672dff78a31ed6333843c2b8e91c02e417ebeeb..8ce966eea368fc6faac7e3b37443364a76d4e7a7 100644 (file)
@@ -69,7 +69,7 @@ public class ServerImplTest {
   @Test
   public void testFileWithNoVersion() {
     exception.expect(IllegalStateException.class);
-    exception.expectMessage("Unknown Sonar version");
+    exception.expectMessage("Unknown SonarQube version");
 
     ServerImpl server = new ServerImpl(new Settings(), "", "/org/sonar/server/platform/ServerImplTest/pom-without-version.properties");
     server.start();
@@ -78,7 +78,7 @@ public class ServerImplTest {
   @Test
   public void testFileWithEmptyVersionParameter() {
     exception.expect(IllegalStateException.class);
-    exception.expectMessage("Unknown Sonar version");
+    exception.expectMessage("Unknown SonarQube version");
 
     ServerImpl server = new ServerImpl(new Settings(), "", "/org/sonar/server/platform/ServerImplTest/pom-with-empty-version.properties");
     server.start();
@@ -87,7 +87,7 @@ public class ServerImplTest {
   @Test
   public void shouldFailIfFileNotFound() {
     exception.expect(IllegalStateException.class);
-    exception.expectMessage("Unknown Sonar version");
+    exception.expectMessage("Unknown SonarQube version");
 
     ServerImpl server = new ServerImpl(new Settings(), "", "/org/sonar/server/platform/ServerImplTest/unknown-file.properties");
     server.start();
index 4b7d9438071eb110b4f213bb445b065967147c86..956d0409c7b9497760871684a08aad3d79507042 100644 (file)
@@ -109,7 +109,7 @@ public class PluginDeployerTest {
     when(server.getVersion()).thenReturn("2.0");
 
     exception.expect(IllegalStateException.class);
-    exception.expectMessage("Plugin switchoffviolations needs a more recent version of Sonar than 2.0. At least 2.5 is expected");
+    exception.expectMessage("Plugin switchoffviolations needs a more recent version of SonarQube than 2.0. At least 2.5 is expected");
 
     deployer.start();
   }
index 8187b4121c7f59be76403104eae6d4baaaccf69f..cd4af5ab95ed0fc434119a0d581083dfee550deb 100644 (file)
@@ -10,7 +10,7 @@
   <groupId>org.codehaus.sonar</groupId>
   <artifactId>sonar-squid</artifactId>
   <packaging>jar</packaging>
-  <name>Sonar :: Squid</name>
+  <name>SonarQube :: Squid</name>
 
   <dependencies>
     <dependency>
@@ -74,4 +74,4 @@
       </testResource>
     </testResources>
   </build>
-</project>
\ No newline at end of file
+</project>
index da92702675974eadfa8bc9f982d4d55085414874..b1379db16c6d2c968ceacaa8a95110e4c4bf9ba3 100644 (file)
@@ -8,7 +8,7 @@
   </parent>
   <artifactId>sonar-testing-harness</artifactId>
   <packaging>jar</packaging>
-  <name>Sonar :: Testing Harness</name>
+  <name>SonarQube :: Testing Harness</name>
 
   <dependencies>
     <dependency>
@@ -30,7 +30,7 @@
     <dependency>
       <groupId>xmlunit</groupId>
       <artifactId>xmlunit</artifactId>
-    </dependency>   
+    </dependency>
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-classic</artifactId>
index 74640c69423385e196a1f20408b2f2399d0931b3..8731b6e060021663f2f816750760fdff4d962dda 100644 (file)
@@ -9,7 +9,7 @@
   </parent>
   <artifactId>sonar-ws-client</artifactId>
   <packaging>jar</packaging>
-  <name>Sonar :: Web Service Client</name>
+  <name>SonarQube :: Web Service Client</name>
   <description>Java Client Library for Sonar Web Services</description>
 
   <properties>