Browse Source

Update groupId, artifactId and packages

tags/2.5-rc1
Julien HENRY 8 years ago
parent
commit
5e187f8dc1
41 changed files with 55 additions and 38 deletions
  1. 2
    2
      pom.xml
  2. 3
    3
      src/main/assembly/bin/sonar-runner
  3. 2
    2
      src/main/assembly/bin/sonar-runner.bat
  4. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Cli.java
  5. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Conf.java
  6. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Exit.java
  7. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Logs.java
  8. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Main.java
  9. 1
    1
      src/main/java/org/sonarsource/scanner/cli/RunnerFactory.java
  10. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Shutdown.java
  11. 1
    1
      src/main/java/org/sonarsource/scanner/cli/Stats.java
  12. 1
    1
      src/main/java/org/sonarsource/scanner/cli/SystemInfo.java
  13. 1
    1
      src/main/java/org/sonarsource/scanner/cli/package-info.java
  14. 4
    1
      src/test/java/org/sonarsource/scanner/cli/CliTest.java
  15. 10
    10
      src/test/java/org/sonarsource/scanner/cli/ConfTest.java
  16. 2
    2
      src/test/java/org/sonarsource/scanner/cli/LogsTest.java
  17. 8
    1
      src/test/java/org/sonarsource/scanner/cli/MainTest.java
  18. 3
    1
      src/test/java/org/sonarsource/scanner/cli/RunnerFactoryTest.java
  19. 3
    1
      src/test/java/org/sonarsource/scanner/cli/ShutdownTest.java
  20. 3
    2
      src/test/java/org/sonarsource/scanner/cli/StatsTest.java
  21. 5
    3
      src/test/java/org/sonarsource/scanner/cli/SystemInfoTest.java
  22. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/emptyModules/project/sonar-project.properties
  23. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadCompleteConfiguration/project/sonar-project.properties
  24. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadCompleteConfiguration/runner/conf/sonar-runner.properties
  25. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfiguration/project/module1/sonar-project.properties
  26. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfiguration/project/module2/sonar-project.properties
  27. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfiguration/project/sonar-project.properties
  28. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module2.properties
  29. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_1/sonar-project.properties
  30. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_2/Sample.js
  31. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_3/sonar-project.properties
  32. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/sonar-project.properties
  33. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties
  34. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadRunnerSettingsByHome/conf/sonar-runner.properties
  35. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module111/placeholder.txt
  36. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module112/placeholder.txt
  37. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module12/placeholder.txt
  38. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module21/placeholder.txt
  39. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module22/placeholder.txt
  40. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/sonar-project.properties
  41. 0
    0
      src/test/resources/org/sonarsource/scanner/cli/RunnerTest/shouldInitDirs/fake.txt

+ 2
- 2
pom.xml View File

@@ -6,8 +6,8 @@
<version>23</version>
</parent>

<groupId>org.sonarsource.scanner</groupId>
<artifactId>sonar-scanner</artifactId>
<groupId>org.sonarsource.scanner.cli</groupId>
<artifactId>sonar-scanner-cli</artifactId>
<version>2.5-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SonarQube Scanner</name>

+ 3
- 3
src/main/assembly/bin/sonar-runner View File

@@ -80,7 +80,7 @@ if [ -z "$SONAR_RUNNER_HOME" ] ; then
fi

# check that the SONAR_RUNNER_HOME has been correctly set
if [ ! -f "$SONAR_RUNNER_HOME/lib/sonar-scanner-${project.version}.jar" ] ; then
if [ ! -f "$SONAR_RUNNER_HOME/lib/sonar-scanner-cli-${project.version}.jar" ] ; then
echo '$SONAR_RUNNER_HOME' does not point to a valid installation directory: $SONAR_RUNNER_HOME
exit 1
fi
@@ -92,7 +92,7 @@ else
JAVA_CMD="`which java`"
fi

JAR_FILE="${SONAR_RUNNER_HOME}"/lib/sonar-scanner-${project.version}.jar
JAR_FILE="${SONAR_RUNNER_HOME}"/lib/sonar-scanner-cli-${project.version}.jar
PROJECT_HOME=`pwd`

#echo "Info: Using sonar-runner at $SONAR_RUNNER_HOME"
@@ -106,5 +106,5 @@ exec "$JAVA_CMD" \
-classpath $JAR_FILE \
"-Drunner.home=\${SONAR_RUNNER_HOME}" \
"-Dproject.home=\${PROJECT_HOME}" \
org.sonar.runner.cli.Main "$@"
org.sonarsource.scanner.cli.Main "$@"


+ 2
- 2
src/main/assembly/bin/sonar-runner.bat View File

@@ -58,7 +58,7 @@ goto run
if "%SONAR_RUNNER_HOME:~-1%"=="\" set SONAR_RUNNER_HOME=%SONAR_RUNNER_HOME:~0,-1%

@REM Check if the provided SONAR_RUNNER_HOME is a valid install dir
IF EXIST "%SONAR_RUNNER_HOME%\lib\sonar-scanner-${project.version}.jar" goto run
IF EXIST "%SONAR_RUNNER_HOME%\lib\sonar-scanner-cli-${project.version}.jar" goto run

echo.
echo ERROR: SONAR_RUNNER_HOME exists but does not point to a valid install
@@ -74,7 +74,7 @@ echo %SONAR_RUNNER_HOME%

set PROJECT_HOME=%CD%

%JAVA_EXEC% -Djava.awt.headless=true %SONAR_RUNNER_OPTS% -cp "%SONAR_RUNNER_HOME%\lib\sonar-scanner-${project.version}.jar" "-Drunner.home=%SONAR_RUNNER_HOME%" "-Dproject.home=%PROJECT_HOME%" org.sonar.runner.cli.Main %*
%JAVA_EXEC% -Djava.awt.headless=true %SONAR_RUNNER_OPTS% -cp "%SONAR_RUNNER_HOME%\lib\sonar-scanner-cli-${project.version}.jar" "-Drunner.home=%SONAR_RUNNER_HOME%" "-Dproject.home=%PROJECT_HOME%" org.sonarsource.scanner.cli.Main %*
if ERRORLEVEL 1 goto error
goto end


src/main/java/org/sonar/runner/cli/Cli.java → src/main/java/org/sonarsource/scanner/cli/Cli.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.util.Properties;
import org.sonar.runner.api.RunnerProperties;

src/main/java/org/sonar/runner/cli/Conf.java → src/main/java/org/sonarsource/scanner/cli/Conf.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.io.File;
import java.io.FileInputStream;

src/main/java/org/sonar/runner/cli/Exit.java → src/main/java/org/sonarsource/scanner/cli/Exit.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

class Exit {
static final int SUCCESS = 0;

src/main/java/org/sonar/runner/cli/Logs.java → src/main/java/org/sonarsource/scanner/cli/Logs.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.io.PrintStream;


src/main/java/org/sonar/runner/cli/Main.java → src/main/java/org/sonarsource/scanner/cli/Main.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.io.BufferedReader;
import java.io.IOException;

src/main/java/org/sonar/runner/cli/RunnerFactory.java → src/main/java/org/sonarsource/scanner/cli/RunnerFactory.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.util.Properties;
import org.sonar.runner.api.EmbeddedRunner;

src/main/java/org/sonar/runner/cli/Shutdown.java → src/main/java/org/sonarsource/scanner/cli/Shutdown.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

class Shutdown {
static final int SUCCESS = 0;

src/main/java/org/sonar/runner/cli/Stats.java → src/main/java/org/sonarsource/scanner/cli/Stats.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

class Stats {
private final Logs logger;

src/main/java/org/sonar/runner/cli/SystemInfo.java → src/main/java/org/sonarsource/scanner/cli/SystemInfo.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import org.sonar.runner.api.RunnerVersion;


src/main/java/org/sonar/runner/cli/package-info.java → src/main/java/org/sonarsource/scanner/cli/package-info.java View File

@@ -18,7 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
@ParametersAreNonnullByDefault
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import javax.annotation.ParametersAreNonnullByDefault;


src/test/java/org/sonar/runner/cli/CliTest.java → src/test/java/org/sonarsource/scanner/cli/CliTest.java View File

@@ -17,9 +17,12 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import org.junit.Test;
import org.sonarsource.scanner.cli.Cli;
import org.sonarsource.scanner.cli.Exit;
import org.sonarsource.scanner.cli.Logs;

import static org.fest.assertions.Assertions.assertThat;
import static org.mockito.Mockito.mock;

src/test/java/org/sonar/runner/cli/ConfTest.java → src/test/java/org/sonarsource/scanner/cli/ConfTest.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.io.File;
import java.util.Properties;
@@ -47,7 +47,7 @@ public class ConfTest {

@Test
public void should_load_global_settings_by_home() throws Exception {
File home = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByHome/").toURI());
File home = new File(getClass().getResource("ConfTest/shouldLoadRunnerSettingsByHome/").toURI());
args.setProperty("runner.home", home.getCanonicalPath());

assertThat(conf.properties().get("sonar.prop")).isEqualTo("value");
@@ -60,7 +60,7 @@ public class ConfTest {

@Test
public void should_load_conf_by_direct_path() throws Exception {
File settings = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties").toURI());
File settings = new File(getClass().getResource("ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties").toURI());
args.setProperty("runner.settings", settings.getCanonicalPath());

assertThat(conf.properties().get("sonar.prop")).isEqualTo("otherValue");
@@ -68,8 +68,8 @@ public class ConfTest {

@Test
public void shouldLoadCompleteConfiguration() throws Exception {
File runnerHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/runner").toURI());
File projectHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/project").toURI());
File runnerHome = new File(getClass().getResource("ConfTest/shouldLoadCompleteConfiguration/runner").toURI());
File projectHome = new File(getClass().getResource("ConfTest/shouldLoadCompleteConfiguration/project").toURI());
args.setProperty("runner.home", runnerHome.getCanonicalPath());
args.setProperty("project.home", projectHome.getCanonicalPath());

@@ -82,7 +82,7 @@ public class ConfTest {

@Test
public void shouldLoadModuleConfiguration() throws Exception {
File projectHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project").toURI());
File projectHome = new File(getClass().getResource("ConfTest/shouldLoadModuleConfiguration/project").toURI());
args.setProperty("project.home", projectHome.getCanonicalPath());

Properties properties = conf.properties();
@@ -93,7 +93,7 @@ public class ConfTest {

@Test
public void shouldSupportDeepModuleConfigurationInRoot() throws Exception {
File projectHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project").toURI());
File projectHome = new File(getClass().getResource("ConfTest/shouldSupportDeepModuleConfigurationInRoot/project").toURI());
args.setProperty("project.home", projectHome.getCanonicalPath());

Properties properties = conf.properties();
@@ -110,7 +110,7 @@ public class ConfTest {

@Test
public void shouldLoadModuleConfigurationOverrideBasedir() throws Exception {
File projectHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project").toURI());
File projectHome = new File(getClass().getResource("ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project").toURI());
args.setProperty("project.home", projectHome.getCanonicalPath());

Properties properties = conf.properties();
@@ -122,7 +122,7 @@ public class ConfTest {

@Test
public void shouldSupportSettingBaseDirFromCli() throws Exception {
File projectHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project").toURI());
File projectHome = new File(getClass().getResource("ConfTest/shouldLoadModuleConfiguration/project").toURI());
args.setProperty("project.home", temp.newFolder().getCanonicalPath());
args.setProperty("sonar.projectBaseDir", projectHome.getCanonicalPath());

@@ -134,7 +134,7 @@ public class ConfTest {

@Test
public void ignoreEmptyModule() throws Exception {
File projectHome = new File(getClass().getResource("/org/sonar/runner/ConfTest/emptyModules/project").toURI());
File projectHome = new File(getClass().getResource("ConfTest/emptyModules/project").toURI());
args.setProperty("project.home", temp.newFolder().getCanonicalPath());
args.setProperty("sonar.projectBaseDir", projectHome.getCanonicalPath());


src/test/java/org/sonar/runner/cli/LogsTest.java → src/test/java/org/sonarsource/scanner/cli/LogsTest.java View File

@@ -17,13 +17,13 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.sonarsource.scanner.cli.Logs;
import java.io.PrintStream;

import static org.mockito.Mockito.verifyNoMoreInteractions;

src/test/java/org/sonar/runner/cli/MainTest.java → src/test/java/org/sonarsource/scanner/cli/MainTest.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
@@ -32,6 +32,13 @@ import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.MockitoAnnotations;
import org.sonar.runner.api.EmbeddedRunner;
import org.sonarsource.scanner.cli.Cli;
import org.sonarsource.scanner.cli.Conf;
import org.sonarsource.scanner.cli.Exit;
import org.sonarsource.scanner.cli.Logs;
import org.sonarsource.scanner.cli.Main;
import org.sonarsource.scanner.cli.RunnerFactory;
import org.sonarsource.scanner.cli.Shutdown;

import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doThrow;

src/test/java/org/sonar/runner/cli/RunnerFactoryTest.java → src/test/java/org/sonarsource/scanner/cli/RunnerFactoryTest.java View File

@@ -17,9 +17,11 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import org.sonar.runner.api.LogOutput.Level;
import org.sonarsource.scanner.cli.Logs;
import org.sonarsource.scanner.cli.RunnerFactory;
import org.sonar.runner.api.LogOutput;
import org.junit.Before;


src/test/java/org/sonar/runner/cli/ShutdownTest.java → src/test/java/org/sonarsource/scanner/cli/ShutdownTest.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import com.jayway.awaitility.Duration;
import java.util.concurrent.Callable;
@@ -26,6 +26,8 @@ import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.sonarsource.scanner.cli.Exit;
import org.sonarsource.scanner.cli.Shutdown;

import static com.jayway.awaitility.Awaitility.await;
import static org.fest.assertions.Assertions.assertThat;

src/test/java/org/sonar/runner/cli/StatsTest.java → src/test/java/org/sonarsource/scanner/cli/StatsTest.java View File

@@ -17,10 +17,11 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import org.mockito.Mockito;

import org.sonarsource.scanner.cli.Logs;
import org.sonarsource.scanner.cli.Stats;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;


src/test/java/org/sonar/runner/cli/SystemInfoTest.java → src/test/java/org/sonarsource/scanner/cli/SystemInfoTest.java View File

@@ -17,7 +17,7 @@
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.runner.cli;
package org.sonarsource.scanner.cli;

import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
@@ -26,10 +26,12 @@ import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;

import org.sonar.runner.api.RunnerVersion;
import org.sonarsource.scanner.cli.Logs;
import org.sonarsource.scanner.cli.SystemInfo;
import org.sonarsource.scanner.cli.SystemInfo.System2;
import org.junit.Before;
import org.sonar.runner.cli.SystemInfo.System2;
import org.junit.Test;
import org.sonar.runner.cli.SystemInfo;
import static org.fest.assertions.Assertions.assertThat;

public class SystemInfoTest {

src/test/resources/org/sonar/runner/ConfTest/emptyModules/project/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/emptyModules/project/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/project/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadCompleteConfiguration/project/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/runner/conf/sonar-runner.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadCompleteConfiguration/runner/conf/sonar-runner.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/module1/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfiguration/project/module1/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/module2/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfiguration/project/module2/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfiguration/project/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module2.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module2.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_1/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_1/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_2/Sample.js → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_2/Sample.js View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_3/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_3/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/sonar-project.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByHome/conf/sonar-runner.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldLoadRunnerSettingsByHome/conf/sonar-runner.properties View File


src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module111/placeholder.txt → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module111/placeholder.txt View File


src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module112/placeholder.txt → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module112/placeholder.txt View File


src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module12/placeholder.txt → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module12/placeholder.txt View File


src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module21/placeholder.txt → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module21/placeholder.txt View File


src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module22/placeholder.txt → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module22/placeholder.txt View File


src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/sonar-project.properties → src/test/resources/org/sonarsource/scanner/cli/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/sonar-project.properties View File


src/test/resources/org/sonar/runner/RunnerTest/shouldInitDirs/fake.txt → src/test/resources/org/sonarsource/scanner/cli/RunnerTest/shouldInitDirs/fake.txt View File


Loading…
Cancel
Save