]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2323 Remove logs specific to Maven
authorsimonbrandhof <simon.brandhof@gmail.com>
Wed, 27 Apr 2011 09:55:16 +0000 (11:55 +0200)
committersimonbrandhof <simon.brandhof@gmail.com>
Wed, 27 Apr 2011 09:55:16 +0000 (11:55 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/DescriptionWidget.java
plugins/sonar-findbugs-plugin/src/main/java/org/sonar/plugins/findbugs/FindbugsConfiguration.java
sonar-plugin-api/src/main/java/org/sonar/api/utils/ServerHttpClient.java

index 02cf7944cc06a21d993bfba29b590e9311cbcfe3..29957c6bae7844a56438f00a8e7fa0b21fa2a515 100644 (file)
@@ -22,7 +22,7 @@ package org.sonar.plugins.core.widgets;
 import org.sonar.api.web.*;
 
 @WidgetLayout(WidgetLayoutType.NONE)
-@Description("Displays general project information taken from the pom.xml")
+@Description("Displays general project information")
 public class DescriptionWidget extends AbstractRubyTemplate implements RubyRailsWidget {
   public String getId() {
     return "description";
index f55f637bf4bd52b6f090cc1b03c2ed081d226d72..4674bf2e7c4b95bbc23e803c3fe6c73de3ec6446 100644 (file)
@@ -62,7 +62,7 @@ public class FindbugsConfiguration implements BatchExtension {
     File classesDir = project.getFileSystem().getBuildOutputDir();
     if (classesDir == null || !classesDir.exists()) {
       throw new SonarException("Findbugs needs sources to be compiled. "
-          + "Please build project or edit pom.xml to set the <outputDirectory> property before executing sonar.");
+          + "Please build project before executing sonar and check the location of compiled classes.");
     }
 
     edu.umd.cs.findbugs.Project findbugsProject = new edu.umd.cs.findbugs.Project();
index 6f174980bb920bb6d3c07a30d97058d6ccc49112..3c55a6a08579fb57276257076766ffd0077d8d3b 100644 (file)
@@ -76,7 +76,7 @@ public class ServerHttpClient implements BatchComponent {
    */
   public void checkUp() {
     String exceptionLabel = "Sonar server at " + url +
-        " is unreacheable. Either start it or setup the sonar.host.url maven setting if the URL is incorrect";
+        " is unreacheable. Either start it or setup the sonar.host.url setting if the URL is incorrect";
     if (getId() == null) {
       throw new ServerConnectionException(exceptionLabel);
     }