]> source.dussan.org Git - sonar-scanner-cli.git/commit
SONARUNNER-141 Remove forked mode
authorJulien HENRY <julien.henry@sonarsource.com>
Thu, 25 Jun 2015 13:53:51 +0000 (15:53 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Thu, 25 Jun 2015 16:01:35 +0000 (18:01 +0200)
commitd4feed19cf6c8c8adf7fcdb037436871c962175a
tree527965c695694bff91a8c5cc70ce78f344103c04
parent8d8bc9bf3d4964f71e9c0e0d719ad1416ba8c16a
SONARUNNER-141 Remove forked mode
164 files changed:
pom.xml
sonar-runner-api/pom.xml
sonar-runner-api/src/main/java/org/sonar/runner/api/Command.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/CommandException.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/CommandExecutor.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/Dirs.java
sonar-runner-api/src/main/java/org/sonar/runner/api/EmbeddedRunner.java
sonar-runner-api/src/main/java/org/sonar/runner/api/ForkedRunner.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/LogListener.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/LogOutput.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/api/Os.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/PrintStreamConsumer.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/Runner.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/SourceEncoding.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/api/StdOutLogOutput.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/api/StreamConsumer.java [deleted file]
sonar-runner-api/src/main/java/org/sonar/runner/impl/InternalProperties.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/IsolatedClassloader.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/IsolatedLauncherFactory.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/IsolatedLauncherProxy.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/JarDownloader.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/JarExtractor.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/Jars.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/RunnerException.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/ServerConnection.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/TempCleaning.java [new file with mode: 0644]
sonar-runner-api/src/main/java/org/sonar/runner/impl/package-info.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/api/CommandExecutorTest.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/api/CommandTest.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/api/DirsTest.java
sonar-runner-api/src/test/java/org/sonar/runner/api/EmbeddedRunnerTest.java
sonar-runner-api/src/test/java/org/sonar/runner/api/ForkedRunnerTest.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/api/OsTest.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/api/PrintStreamConsumerTest.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/api/SimpleRunner.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/api/SourceEncodingTest.java [deleted file]
sonar-runner-api/src/test/java/org/sonar/runner/impl/IsolatedClassloaderTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/IsolatedLauncherFactoryTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/IsolatedLauncherProxyTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/JarDownloaderTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/JarExtractorTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/JarsTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/MockHttpServer.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/MockHttpServerInterceptor.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/NetworkUtil.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/ServerConnectionTest.java [new file with mode: 0644]
sonar-runner-api/src/test/java/org/sonar/runner/impl/TempCleaningTest.java [new file with mode: 0644]
sonar-runner-api/src/test/resources/fake.jar [new file with mode: 0644]
sonar-runner-api/src/test/resources/org/sonar/runner/impl/BatchLauncherMainTest/props.properties [new file with mode: 0644]
sonar-runner-batch-interface/src/main/java/org/sonar/runner/batch/IsolatedLauncher.java
sonar-runner-batch-interface/src/main/java/org/sonar/runner/batch/LogOutput.java [new file with mode: 0644]
sonar-runner-batch/pom.xml
sonar-runner-batch/src/main/java/org/sonar/runner/batch/BatchIsolatedLauncher.java
sonar-runner-batch/src/test/java/org/sonar/runner/batch/IsolatedLauncherTest.java
sonar-runner-cli/assembly.xml [new file with mode: 0644]
sonar-runner-cli/pom.xml [new file with mode: 0644]
sonar-runner-cli/src/main/assembly/bin/sonar-runner [new file with mode: 0755]
sonar-runner-cli/src/main/assembly/bin/sonar-runner.bat [new file with mode: 0644]
sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Cli.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Conf.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Exit.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Logs.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Main.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/RunnerFactory.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Shutdown.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/Stats.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/SystemInfo.java [new file with mode: 0644]
sonar-runner-cli/src/main/java/org/sonar/runner/cli/package-info.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/CliTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/ConfTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/MainTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/RunnerFactoryTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/ShutdownTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/StatsTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/java/org/sonar/runner/cli/SystemInfoTest.java [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/project/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/runner/conf/sonar-runner.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/module1/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/module2/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module2.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_1/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_2/Sample.js [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_3/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByHome/conf/sonar-runner.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module111/placeholder.txt [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module112/placeholder.txt [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module12/placeholder.txt [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module21/placeholder.txt [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module22/placeholder.txt [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/sonar-project.properties [new file with mode: 0644]
sonar-runner-cli/src/test/resources/org/sonar/runner/RunnerTest/shouldInitDirs/fake.txt [new file with mode: 0644]
sonar-runner-dist/assembly.xml [deleted file]
sonar-runner-dist/pom.xml [deleted file]
sonar-runner-dist/src/main/assembly/bin/sonar-runner [deleted file]
sonar-runner-dist/src/main/assembly/bin/sonar-runner.bat [deleted file]
sonar-runner-dist/src/main/assembly/conf/sonar-runner.properties [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/Cli.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/Conf.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/Exit.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/Main.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/RunnerFactory.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/Shutdown.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/Stats.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/SystemInfo.java [deleted file]
sonar-runner-dist/src/main/java/org/sonar/runner/package-info.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/CliTest.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/ConfTest.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/MainTest.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/RunnerFactoryTest.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/ShutdownTest.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/StatsTest.java [deleted file]
sonar-runner-dist/src/test/java/org/sonar/runner/SystemInfoTest.java [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/project/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadCompleteConfiguration/runner/conf/sonar-runner.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/module1/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/module2/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfiguration/project/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module2.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_1/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_2/Sample.js [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/module_3/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadModuleConfigurationOverrideBasedir/project/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByDirectPath/other-conf.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldLoadRunnerSettingsByHome/conf/sonar-runner.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module111/placeholder.txt [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module11/module112/placeholder.txt [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module1/module12/placeholder.txt [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module21/placeholder.txt [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/module2/module22/placeholder.txt [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/ConfTest/shouldSupportDeepModuleConfigurationInRoot/project/sonar-project.properties [deleted file]
sonar-runner-dist/src/test/resources/org/sonar/runner/RunnerTest/shouldInitDirs/fake.txt [deleted file]
sonar-runner-impl/pom.xml [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/BatchLauncherMain.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/InternalProperties.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/IsolatedClassloader.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/IsolatedLauncherFactory.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/IsolatedLauncherProxy.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/JarDownloader.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/JarExtractor.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/Jars.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/Logs.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/RunnerException.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/ServerConnection.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/TempCleaning.java [deleted file]
sonar-runner-impl/src/main/java/org/sonar/runner/impl/package-info.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/BatchLauncherMainTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/IsolatedClassloaderTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/IsolatedLauncherFactoryTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/IsolatedLauncherProxyTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/JarDownloaderTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/JarExtractorTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/JarsTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/LogsTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/MockHttpServer.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/MockHttpServerInterceptor.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/NetworkUtil.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/ServerConnectionTest.java [deleted file]
sonar-runner-impl/src/test/java/org/sonar/runner/impl/TempCleaningTest.java [deleted file]
sonar-runner-impl/src/test/resources/fake.jar [deleted file]
sonar-runner-impl/src/test/resources/org/sonar/runner/impl/BatchLauncherMainTest/props.properties [deleted file]